This is an automated email from the ASF dual-hosted git repository.
anirudh2290 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 30d479f Tweak the copy for the cudnn autotuning warning. (#14680)
30d479f is described below
commit 30d479feae11b04d423f2ec055d124fb6d2d5730
Author: Kellen Sunderland <[email protected]>
AuthorDate: Fri Apr 12 13:17:07 2019 -0700
Tweak the copy for the cudnn autotuning warning. (#14680)
---
src/operator/nn/cudnn/cudnn_algoreg-inl.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/operator/nn/cudnn/cudnn_algoreg-inl.h
b/src/operator/nn/cudnn/cudnn_algoreg-inl.h
index cef9d6f..3f2d24c 100644
--- a/src/operator/nn/cudnn/cudnn_algoreg-inl.h
+++ b/src/operator/nn/cudnn/cudnn_algoreg-inl.h
@@ -96,7 +96,7 @@ class CuDNNAlgoReg {
if (param.cudnn_tune.value() && reg_.size() % 50 == 0) {
LOG(INFO) << "Running performance tests to find the best convolution "
"algorithm, "
- "this can take a while... (setting env variable "
+ "this can take a while... (set the environment variable "
"MXNET_CUDNN_AUTOTUNE_DEFAULT to 0 to disable)";
if (reg_.size() >= 1000) {
// Many people are very concerned about this warning, so change the
warning once.