We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8393d94 commit 463eb83Copy full SHA for 463eb83
.github/workflows/building.yml
@@ -99,15 +99,15 @@ jobs:
99
- name: Install main package for CPU
100
if: ${{ matrix.cuda-version == 'cpu' }}
101
run: |
102
- FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -e . --no-build-isolation
+ FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -v -e . --no-build-isolation
103
shell:
104
bash
105
106
- name: Install main package for GPU
107
if: ${{ matrix.cuda-version != 'cpu' }}
108
109
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
110
- WITH_METIS=1 pip install -e . --no-build-isolation
+ FORCE_CUDA=1 WITH_METIS=1 pip install -v -e . --no-build-isolation
111
112
113
0 commit comments