meta.yaml 911 Bytes
Newer Older
1
{% set version = "0.5.dev" %}
2 3 4 5 6 7 8 9 10

package:
  name: tvm-libs
  version: {{ version }}

source:
  path: ../..

build:
11 12
  number: 1
  string: cuda{{ cuda_version }}_{{ PKG_BUILDNUM }}  # [cuda]
13 14

requirements:
abergeron committed
15 16 17
  build:
    - {{ compiler('cxx') }}  # [linux]
    - llvmdev ==6.0.0  # [osx]
18 19 20
  host:
    # The OS X build will require some manual setup or it will break
    # See https://conda.io/docs/user-guide/tasks/build-packages/compiler-tools.html#macos-sdk
abergeron committed
21 22 23
    # It is also ass-backward because of llvm brokeness when mixed with the
    # conda OS X compiler
    - {{ compiler('cxx') }}  # [osx]
24
    - cmake
abergeron committed
25 26
    - llvmdev ==6.0.0  # [linux]
    - zlib  # [linux]
27 28
  run:
    - {{ pin_compatible('cudatoolkit', lower_bound=cuda_version, max_pin='x.x') }}  # [cuda]
29 30 31 32 33

about:
  home: https://github.com/dmlc/tvm
  license: Apache2
  summary: a low level domain specific language for compiling tensor computation pipelines