eric-haibin-lin commented on a change in pull request #13896: Cudnn dropout
URL: https://github.com/apache/incubator-mxnet/pull/13896#discussion_r252952462
##########
File path: src/operator/nn/dropout-inl.h
##########
@@ -367,29 +475,54 @@ class DropoutOp {
/*! \brief Dropout mode */
dropout::DropoutOpMode mode_;
TShape axes_;
+ bool dropout_passthrough_;
+#if MXNET_USE_CUDNN_DROPOUT
+ bool cudnn_off_;
+ Context ctx_;
+ cudnnDataType_t dtype_;
+ cudnnDropoutDescriptor_t dropout_desc_;
+ uint64_t seed_ = 17 + rand() % 4096; // NOLINT(runtime/threadsafe_fn)
Review comment:
Does this affect reproducibility?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|