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 Chintala <soumith@gmail.com>2014-09-11 01:03:02 +0400
committerSoumith Chintala <soumith@gmail.com>2014-09-11 01:03:02 +0400
commita8bf53f8738fd319568593718280343c3ebc93e6 (patch)
tree58f632560c26f31c9d87e81d6f14c546c3020bcd /cudnn-scm-1.rockspec
first commit
Diffstat (limited to 'cudnn-scm-1.rockspec')
-rw-r--r--cudnn-scm-1.rockspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/cudnn-scm-1.rockspec b/cudnn-scm-1.rockspec
new file mode 100644
index 0000000..bc36117
--- /dev/null
+++ b/cudnn-scm-1.rockspec
@@ -0,0 +1,30 @@
+package = "cudnn"
+version = "scm-1"
+
+source = {
+ url = "git://github.com/soumith/cudnn.torch.git",
+}
+
+description = {
+ summary = "Torch7 FFI bindings for NVIDIA CuDNN kernels!",
+ detailed = [[
+ All CuDNN modules exposed as nn.Module derivatives so
+ that they can be used with torch's neural network package
+ ]],
+ homepage = "https://github.com/soumith/cudnn.torch",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "cutorch",
+ "nn"
+}
+
+build = {
+ type = "command",
+ build_command = [[
+cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)
+]],
+ install_command = "cd build && $(MAKE) install"
+} \ No newline at end of file