meta.yaml 749 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
{% set version = "0.4.dev" %}

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

source:
  path: ../..

build:
  number: 0

requirements:
abergeron committed
14 15 16
  build:
    - {{ compiler('cxx') }}  # [linux]
    - llvmdev ==6.0.0  # [osx]
17 18 19
  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
20 21 22
    # It is also ass-backward because of llvm brokeness when mixed with the
    # conda OS X compiler
    - {{ compiler('cxx') }}  # [osx]
23
    - cmake
abergeron committed
24 25
    - llvmdev ==6.0.0  # [linux]
    - zlib  # [linux]
26 27 28 29 30

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