We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996d431 commit bdd5de4Copy full SHA for bdd5de4
1 file changed
.github/workflows/qflop-dual-bridge.yml
@@ -198,7 +198,11 @@ jobs:
198
199
- name: Setup Compute Environment
200
run: |
201
- python3 -m pip install --upgrade pip
+ # Create virtual environment (required for managed Python on GPU runner)
202
+ python3 -m venv .venv
203
+ source .venv/bin/activate
204
+
205
+ pip install --upgrade pip
206
207
# Install JAX with GPU support (CUDA 12)
208
pip install --upgrade "jax[cuda12]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html || \
@@ -214,6 +218,7 @@ jobs:
214
218
XLA_PYTHON_CLIENT_PREALLOCATE: "false"
215
219
XLA_PYTHON_CLIENT_MEM_FRACTION: "0.8"
216
220
221
217
222
cd genesis-q-mem
223
224
DURATION_SEC=$(( ${{ inputs.duration_minutes || 10 }} * 60 ))
0 commit comments