We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308e51a commit 8646bf8Copy full SHA for 8646bf8
include/caffe/util/cudnn.hpp
@@ -50,6 +50,10 @@ inline const char* cudnnGetErrorString(cudnnStatus_t status) {
50
return "CUDNN_STATUS_RUNTIME_IN_PROGRESS";
51
case CUDNN_STATUS_RUNTIME_FP_OVERFLOW:
52
return "CUDNN_STATUS_RUNTIME_FP_OVERFLOW";
53
+#endif
54
+#if CUDNN_VERSION_MIN(8, 0, 1)
55
+ case CUDNN_STATUS_VERSION_MISMATCH:
56
+ return "CUDNN_STATUS_VERSION_MISMATCH";
57
#endif
58
}
59
return "Unknown cudnn status";
0 commit comments