meta.yaml 906 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
package:
  name: pytorch-cluster
Matthias Fey's avatar
Matthias Fey committed
3
  version: 1.6.1
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
19
20
21
22
23
24
    - python {{ environ.get('PYTHON_VERSION') }}
    - {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
    - {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}

  run:
    - 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'] }}
rusty1s's avatar
rusty1s committed
25
  script: pip install .
rusty1s's avatar
rusty1s committed
26
27
  script_env:
    - FORCE_CUDA
rusty1s's avatar
rusty1s committed
28
    - TORCH_CUDA_ARCH_LIST
rusty1s's avatar
rusty1s committed
29
30
31
32

test:
  imports:
    - torch_cluster
rusty1s's avatar
rusty1s committed
33
34
  requires:
    - scipy
rusty1s's avatar
rusty1s committed
35
36
37
38
39

about:
  home: https://github.com/rusty1s/pytorch_cluster
  license: MIT
  summary: PyTorch Extension Library of Optimized Graph Cluster Algorithms