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