Revision 612dda45f8c1f7a0f38f116d7cda32e6da0eb0b7 authored by Soumith Chintala on 30 September 2016, 16:12:32 UTC, committed by GitHub on 30 September 2016, 16:12:32 UTC
Fixes for https://github.com/torch/cutorch/pull/519
2 parent s 5aa68bb + 52f7419
Raw File
cunn-1.0-0.rockspec
package = "cunn"
version = "1.0-0"

source = {
   url = "git://github.com/torch/cunn.git",
   tag = "1.0-0"
}

description = {
   summary = "Torch CUDA Neural Network Implementation",
   detailed = [[
   ]],
   homepage = "https://github.com/torch/cunn",
   license = "BSD"
}

dependencies = {
   "torch >= 7.0",
   "nn >= 1.0",
   "cutorch == 1.0-0"
}

build = {
   type = "command",
   build_command = [[
cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE) -j$(getconf _NPROCESSORS_ONLN) install
]],
	platforms = {
      windows = {
   build_command = [[
cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE) install
]]
	  }
   },
   install_command = "cd build"
}
back to top