Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/soumith/cudnn.torch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsoumith <soumith@gmail.com>2016-05-17 00:45:55 +0300
committersoumith <soumith@gmail.com>2016-05-17 00:45:55 +0300
commit20340a7b480b2fd6bd35ab1fc9c6be7fe083a072 (patch)
treeef16648fa6aced81dc743153b3f8a17342cc39a0
parent68d106e6dd1b25a2861796ab4214eca4c881a37b (diff)
cudnn r5 final version checks
-rw-r--r--ffi.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffi.lua b/ffi.lua
index a96d07e..ce15950 100644
--- a/ffi.lua
+++ b/ffi.lua
@@ -1595,8 +1595,8 @@ Then make sure files named as libcudnn.so.5 or libcudnn.5.dylib are placed in yo
end
cudnn.version = tonumber(cudnn.C.cudnnGetVersion())
-if cudnn.version < 5002 then
- error('These bindings are for version 5002 or above, '
+if cudnn.version < 5005 then
+ error('These bindings are for version 5005 or above, '
.. 'while the loaded CuDNN is version: ' .. cudnn.version
.. ' \nAre you using an older version of CuDNN?')
end