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>2015-11-06 01:44:15 +0300
committersoumith <soumith@gmail.com>2015-11-06 01:44:15 +0300
commit507c3a35e3bfbba2af102fbead0c2fb41e9db9b0 (patch)
treeadd28ed63809ef677e224128e31706bb9df7dc4f /ffi.lua
parent3532bf81ab15df72a6dc900a1788d3e1d3d1fa2e (diff)
integrating changes from master
Diffstat (limited to 'ffi.lua')
-rw-r--r--ffi.lua23
1 files changed, 15 insertions, 8 deletions
diff --git a/ffi.lua b/ffi.lua
index c8ee963..e74c5cb 100644
--- a/ffi.lua
+++ b/ffi.lua
@@ -567,7 +567,7 @@ cudnnStatus_t cudnnConvolutionBackwardFilter_v3(
const void *beta,
const cudnnFilterDescriptor_t dwDesc,
void *dw );
-
+
/*********************************************************/
/* helper function to provide the convolution algo that fit best the requirement */
typedef enum
@@ -937,7 +937,7 @@ cudnnStatus_t cudnnCreateLRNDescriptor(
typedef enum { CUDNN_LRN_MIN_N = 1, /* minimum allowed lrnN */
CUDNN_LRN_MAX_N = 16 } /* maximum allowed lrnN */
LRN_MinMaxFakeEnum;
-
+
/* define CUDNN_LRN_MIN_K 1e-5 -- minimum allowed lrnK */
/* define CUDNN_LRN_MIN_BETA 0.01 -- minimum allowed lrnBeta */
@@ -1228,7 +1228,7 @@ cudnnStatus_t cudnnGetConvolutionNdDescriptor_v2(
int strideA[],
int upscaleA[],
cudnnConvolutionMode_t *mode );
-
+
cudnnStatus_t cudnnAddTensor_v2(
cudnnHandle_t handle,
cudnnAddMode_t mode,
@@ -1238,7 +1238,7 @@ cudnnStatus_t cudnnAddTensor_v2(
const void *beta,
cudnnTensorDescriptor_t yDesc,
void *y );
-
+
cudnnStatus_t cudnnConvolutionBackwardFilter_v2(
cudnnHandle_t handle,
const void *alpha,
@@ -1250,7 +1250,7 @@ cudnnStatus_t cudnnConvolutionBackwardFilter_v2(
const void *beta,
const cudnnFilterDescriptor_t dxDesc,
void *dx );
-
+
cudnnStatus_t cudnnConvolutionBackwardData_v2(
cudnnHandle_t handle,
const void *alpha,
@@ -1264,12 +1264,19 @@ cudnnStatus_t cudnnConvolutionBackwardData_v2(
void *dx );
]]
-local ok,err = pcall(function() cudnn.C = ffi.load('libcudnn') end)
+local libnames = {'libcudnn.so.4', 'libcudnn.4.dylib'}
+
+local ok = false
+for i=1,#libnames do
+ ok = pcall(function () cudnn.C = ffi.load(libnames[i]) end)
+ if ok then break; end
+end
+
if not ok then
print(err)
- error([['libcudnn not found in library path.
+ error([['libcudnn (R4) not found in library path.
Please install CuDNN from https://developer.nvidia.com/cuDNN
-Then make sure all the files named as libcudnn.so* are placed in your library load path (for example /usr/local/lib , or manually add a path to LD_LIBRARY_PATH)
+Then make sure files named as libcudnn.so.4 or libcudnn.4.dylib are placed in your library load path (for example /usr/local/lib , or manually add a path to LD_LIBRARY_PATH)
]])
end