Commit ceaaf0b2 authored by rusty1s's avatar rusty1s
Browse files

WITH_METIS

parent a49a1429
...@@ -56,7 +56,7 @@ jobs: ...@@ -56,7 +56,7 @@ jobs:
- name: Install main package for CPU - name: Install main package for CPU
if: ${{ matrix.cuda-version == 'cpu' }} if: ${{ matrix.cuda-version == 'cpu' }}
run: | run: |
FORCE_ONLY_CPU=1 pip install -e . FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -e .
shell: shell:
bash bash
...@@ -64,7 +64,7 @@ jobs: ...@@ -64,7 +64,7 @@ jobs:
if: ${{ matrix.cuda-version != 'cpu' }} if: ${{ matrix.cuda-version != 'cpu' }}
run: | run: |
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
FORCE_CUDA=1 pip install -e . FORCE_CUDA=1 WITH_METIS=1 pip install -e .
shell: shell:
bash bash
......
...@@ -30,11 +30,13 @@ jobs: ...@@ -30,11 +30,13 @@ jobs:
- name: Install internal dependencies - name: Install internal dependencies
run: | run: |
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+${{ matrix.cuda-version }}.html pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+cpu.html
- name: Install main package - name: Install main package
run: | run: |
pip install -e .[test] pip install -e .[test]
env:
WITH_METIS: 1
- name: Run test-suite - name: Run test-suite
run: | run: |
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment