Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Li, Hao H committed Mar 22, 2019
1 parent 908b498 commit e47eae4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/operator/rnn-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -578,22 +578,22 @@ class RNNOp {
DType* work_cpu_space = NULL;
#if MXNET_USE_CUDNN_RNN
LOG(INFO) << "MXNET_USE_CUDNN_RNN:true";
else
#else
LOG(INFO) << "MXNET_USE_CUDNN_RNN:false";
#endif
#if defined(__CUDACC__)
LOG(INFO) << "defined(__CUDACC__):true";
else
#else
LOG(INFO) << "defined(__CUDACC__):false";
#endif
#if MXNET_USE_CUDNN == 1
LOG(INFO) << "MXNET_USE_CUDNN == 1:true";
else
#else
LOG(INFO) << "MXNET_USE_CUDNN == 1:false";
#endif
#if CUDNN_VERSION >= 7200
LOG(INFO) << "CUDNN_VERSION >= 7200:true";
else
#else
LOG(INFO) << "CUDNN_VERSION >= 7200:false";
#endif

Expand Down

0 comments on commit e47eae4

Please sign in to comment.