meta.yaml 503 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
{% set version = "0.1.dev" %}

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

source:
  path: ../..

build:
  number: 1
  skip: True  # [win]
  script_env:
    - CONDA_CUDA_HOME

requirements:
  build:
    - llvmdev ==4.0.0
    - python >=3
    - numpy
    - setuptools
    - nose
    - decorator
  run:
    - python >=3
    - numpy
    - decorator

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