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

package:
  name: tvm
  version: {{ version }}

source:
  path: ../..

build:
11
  number: 0
12 13 14

requirements:
  build:
15 16 17 18
    - {{ compiler('cxx') }}
  host:
    - python {{ python }}
    - cython
19 20 21
    - numpy
    - setuptools
    - decorator
22
    - tvm-libs =={{ version }}
23
  run:
24 25
    - python
    - {{ pin_compatible('numpy') }}
26
    - decorator
27 28 29 30 31
    - tvm-libs =={{ version }}

test:
  imports:
    - tvm
32 33 34 35 36

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