"docs/platforms/nvidia_jetson.md" did not exist on "57a404fd55a94116d3b7ff935c21cd2065cd9917"
meta.yaml 944 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

requirements:
rusty1s's avatar
rusty1s committed
9
10
11
  build:
    - {{ compiler('c') }}  # [win]

rusty1s's avatar
rusty1s committed
12
  host:
rusty1s's avatar
rusty1s committed
13
    - pip
rusty1s's avatar
rusty1s committed
14
    - python {{ environ.get('PYTHON_VERSION') }}
rusty1s's avatar
rusty1s committed
15
16
17
18
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

  run:
rusty1s's avatar
rusty1s committed
19
    - python {{ environ.get('PYTHON_VERSION') }}
rusty1s's avatar
rusty1s committed
20
21
22
23
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

build:
rusty1s's avatar
rusty1s committed
24
  string: py{{ environ.get('PYTHON_VERSION').replace('.', '') }}_torch_{{ environ['TORCH_VERSION'] }}_{{ environ['CUDA_VERSION'] }}
rusty1s's avatar
rusty1s committed
25
  script: pip install .
rusty1s's avatar
rusty1s committed
26
27
  script_env:
    - FORCE_CUDA
28
    - TORCH_CUDA_ARCH_LIST="5.2 6.0 6.1 7.0 7.5 8.0 8.6+PTX"
rusty1s's avatar
rusty1s committed
29
30
31
32
33
34
35
36
37

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