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

package:
  name: nnvm
  version: {{ version }}

source:
  path: ../..

build:
11
  number: 1
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  skip: True  # [win]

requirements:
  build:
    - {{ compiler('cxx') }}
  host:
    - python {{ python }}
    - cython
    - numpy
    - setuptools
    - decorator
    - tvm-libs =={{ version }}
  run:
    - tvm =={{ version }}
    - topi =={{ version }}
    - tvm-libs =={{ version }}
    - python
    - {{ pin_compatible('numpy') }}
    - decorator

test:
  imports:
    - nnvm

about:
  home: https://github.com/dmlc/nnvm
  license: Apache2
  summary: Bring deep learning to bare metal