meta.yaml 833 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
package:
rusty1s's avatar
rusty1s committed
2
3
  name: pytorch-spline-conv
  version: 1.2.1
rusty1s's avatar
rusty1s committed
4
5

source:
rusty1s's avatar
rusty1s committed
6
  path: ../..
rusty1s's avatar
rusty1s committed
7
8
9

requirements:
  host:
rusty1s's avatar
rusty1s committed
10
    - {{ environ.get('CONDA_PYTHON_CONSTRAINT') }}
rusty1s's avatar
rusty1s committed
11
12
13
14
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

  run:
rusty1s's avatar
rusty1s committed
15
    - {{ environ.get('CONDA_PYTHON_CONSTRAINT') }}
rusty1s's avatar
rusty1s committed
16
17
18
19
20
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

build:
  string: py{{py}}_torch_{{ environ['TORCH_VERSION'] }}_{{ environ['CUDA_VERSION'] }}
rusty1s's avatar
rusty1s committed
21
  script: python setup.py install
rusty1s's avatar
rusty1s committed
22
  script_env:
rusty1s's avatar
rusty1s committed
23
    - CUDA_HOME
rusty1s's avatar
rusty1s committed
24
25
    - FORCE_CUDA
    - FORCE_ONLY_CPU
rusty1s's avatar
rusty1s committed
26
27
28
29
30
31
32
33
34

test:
  imports:
    - torch_spline_conv

about:
  home: https://github.com/rusty1s/pytorch_spline_conv
  license: MIT
  summary: Implementation of the Spline-Based Convolution Operator of SplineCNN in PyTorch