meta.yaml 943 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
package:
  name: pytorch-sparse
rusty1s's avatar
rusty1s committed
3
  version: 0.6.12
rusty1s's avatar
rusty1s committed
4
5
6
7
8
9
10
11
12

source:
  path: ../..

requirements:
  build:
    - {{ compiler('c') }}  # [win]

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

  run:
rusty1s's avatar
rusty1s committed
19
20
    - scipy
    - pytorch-scatter
rusty1s's avatar
rusty1s committed
21
22
23
24
25
26
27
28
    - python {{ environ.get('PYTHON_VERSION') }}
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

build:
  string: py{{ environ.get('PYTHON_VERSION').replace('.', '') }}_torch_{{ environ['TORCH_VERSION'] }}_{{ environ['CUDA_VERSION'] }}
  script_env:
    - FORCE_CUDA
rusty1s's avatar
rusty1s committed
29
    - TORCH_CUDA_ARCH_LIST
rusty1s's avatar
rusty1s committed
30
    - WITH_METIS=1
rusty1s's avatar
rusty1s committed
31
  preserve_egg_dir: True
rusty1s's avatar
rusty1s committed
32
33
34
35
36
37
38
39
40

test:
  imports:
    - torch_sparse

about:
  home: https://github.com/rusty1s/pytorch_sparse
  license: MIT
  summary: PyTorch Extension Library of Optimized Autograd Sparse Matrix Operations