sparseconvnet-0.1-1.rockspec 726 Bytes
Newer Older
Benjamin Thomas Graham's avatar
Benjamin Thomas Graham committed
1
2
3
4
5
6
7
-- Copyright 2016-present, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the license found in the
-- LICENSE file in the root directory of this source tree.

package = "sparseconvnet"
Ed Ng's avatar
Ed Ng committed
8
version = "0.1-1"
Benjamin Thomas Graham's avatar
Benjamin Thomas Graham committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

source = {
  url = "",
  tag = "master"
}

description = {
  summary = "Submanifold Sparse ConvNets for Torch",
  detailed = [[
  ]],
  homepage = "",
  license = "CC-BY-NC"
}

dependencies = {
  "torch >= 7.0",
  "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)"
  ]],
  install_command = "cd build && $(MAKE) install"
}