-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Small fix of the Depthwise Convolution example in python3 #224
Conversation
fix for python3
import tvm | ||
import numpy as np | ||
from scipy import signal | ||
from tvm.contrib import nvcc_compiler | ||
|
||
DIR_PATH = os.path.realpath(os.path.dirname(__file__)) | ||
sys.path.append(os.path.join(DIR_PATH, '..', '..', 'python')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can assume topi is in path, so this is not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sxjscience can you remove this line so that it can be merged? thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, done.
…e#224) * Refactor dequantize scheduler and simplify pass * Refactor dequantize scheduler and simplify pass * Implement Fast Decoding
No description provided.