How to disable MXNET_CUDNN_AUTOTUNE_DEFAULT and bucketing log message without turning off MXNET_CUDNN_AUTOTUNE_DEFAULT? #20557
-
16:49:37] src/operator/././cudnn_algoreg-inl.h:112: Running performance tests to find the best convolution algorithm, this can take a while... (setting env variable MXNET_CUDNN_AUTOTUNE_DEFAULT to 0 to disable) |
Beta Was this translation helpful? Give feedback.
Replies: 21 comments
-
I tried exporting or using os.environ but they don't work. The code i am using is https://github.com/pangyupo/mxnet_mtcnn_face_detection |
Beta Was this translation helpful? Give feedback.
-
#7988 ought to do it. |
Beta Was this translation helpful? Give feedback.
-
@szha I don't quite understand how to use #7988. How should I solve the problem? |
Beta Was this translation helpful? Give feedback.
-
Sorry for the confusion. What I meant was that once that PR is merged the problem should be resolved. Let's wait for that PR to get in first. |
Beta Was this translation helpful? Give feedback.
-
I have the same problems for that. |
Beta Was this translation helpful? Give feedback.
-
@yxchng did you save this problem, i am also using mtcnn mxnet |
Beta Was this translation helpful? Give feedback.
-
export MXNET_CUDNN_AUTOTUNE_DEFALUT=0, it is ok |
Beta Was this translation helpful? Give feedback.
-
Hi there I am on I see the same error even after
Any news on how to solve this? |
Beta Was this translation helpful? Give feedback.
-
@jrzaurin This bug should have already been fixed by the PR mentioned above. Which version of mxnet are you using? Would you be able to upgrade to 1.0? |
Beta Was this translation helpful? Give feedback.
-
In fact I am using
which I installed via: (opencv and graphviz where already installed) I upgraded to Overall: so...any idea is appreciated, Thanks! |
Beta Was this translation helpful? Give feedback.
-
The latest version of mxnet is mxnet-cu80==1.0.0.post2. Would you be able to try out this version? |
Beta Was this translation helpful? Give feedback.
-
Hey thanks! I did not know about the Still runs very slow, but I am sure this is something on my side...so, regarding to the
and the message disappeared thanks! EDIT just updated to mxnet-cu80==1.0.1 and:
The first 3 lines are just I am just saying in case is useful. |
Beta Was this translation helpful? Give feedback.
-
@yxchng , is this still an issue for you? |
Beta Was this translation helpful? Give feedback.
-
@lanking520 nope thanks |
Beta Was this translation helpful? Give feedback.
-
I'm using mxnet 1.2.0, cuda 9.0 and cudnn 7.0, and still encounter this problem. So what's the final solution? (resetting MXNET_CUDNN_AUTOTUNE_DEFAULT doesn't work). |
Beta Was this translation helpful? Give feedback.
-
While auto tuning, it gives an error message and still running. Is this normal? mx 1.2.0, cuda 9.0, ubuntu 16.04
After export MXNET_CUDNN_AUTOTUNE_DEFAULT = 0, this error was gone. |
Beta Was this translation helpful? Give feedback.
-
I have the same problems for now |
Beta Was this translation helpful? Give feedback.
-
The problem still persists after |
Beta Was this translation helpful? Give feedback.
-
Can you check in your model, if some convolution layer has |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
It is pretty simple. If you are using Windows: Edit the system evironmental variables (Add a new variable: MXNET_CUDNN_AUTOTUNE_DEFAULT and set it to 0). Check it out! |
Beta Was this translation helpful? Give feedback.
import os
os.environ['MXNET_CUDNN_AUTOTUNE_DEFAULT'] = '0'
it works for me.