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 ba2c1b2 commit cbf094dCopy full SHA for cbf094d
.github/workflows/building.yml
@@ -85,15 +85,15 @@ jobs:
85
- name: Install main package for CPU
86
if: ${{ matrix.cuda-version == 'cpu' }}
87
run: |
88
- FORCE_ONLY_CPU=1 pip install -e . --no-build-isolation
+ FORCE_ONLY_CPU=1 pip install -v -e . --no-build-isolation
89
shell:
90
bash
91
92
- name: Install main package for GPU
93
if: ${{ matrix.cuda-version != 'cpu' }}
94
95
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
96
- pip install -e . --no-build-isolation
+ FORCE_CUDA=1 pip install -v -e . --no-build-isolation
97
98
99
0 commit comments