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

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

source:
  path: ../..

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

requirements:
abergeron committed
15
  build:
16
    # The OS X build will require some manual setup or it will break
17 18 19
    # See https://docs.conda.io/projects/conda-build/en/latest/source/resources/compiler-tools.html#macos-sdk
    - {{ compiler('cxx') }}
  host:
20
    - cmake
21
    - llvmdev ==6.0.0
abergeron committed
22
    - zlib  # [linux]
23 24
  run:
    - {{ pin_compatible('cudatoolkit', lower_bound=cuda_version, max_pin='x.x') }}  # [cuda]
25 26 27 28 29

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