Skip to content

Commit d4f930b

Browse files
Update benchmarks.yml
1 parent 97e4a38 commit d4f930b

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/benchmarks.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ on:
44
pull_request:
55
branches:
66
- main
7+
workflow_dispatch:
8+
inputs:
9+
halt-for-connection:
10+
description: 'Should this workflow run wait for a remote connection?'
11+
type: choice
12+
required: true
13+
default: 'no'
14+
options:
15+
- 'yes'
16+
- 'no'
717

818
jobs:
919
build:
@@ -20,6 +30,18 @@ jobs:
2030

2131
steps:
2232
- uses: actions/checkout@v3
33+
- name: Build jaxlib
34+
env:
35+
JAXCI_CLONE_MAIN_XLA: 1
36+
run: ./ci/build_artifacts.sh "jaxlib"
37+
- name: Build jax-cuda-plugin
38+
env:
39+
JAXCI_CLONE_MAIN_XLA: 1
40+
run: ./ci/build_artifacts.sh "jax-cuda-plugin"
41+
- name: Build jax-cuda-pjrt
42+
env:
43+
JAXCI_CLONE_MAIN_XLA: 1
44+
run: ./ci/build_artifacts.sh "jax-cuda-pjrt"
2345
- name: Install dependencies
2446
run: |
2547
python -m pip install --upgrade pip
@@ -31,4 +53,3 @@ jobs:
3153
- name: Run Multiprocess GPU Test
3254
run: |
3355
python -m pytest tests/multiprocess_gpu_test.py
34-

0 commit comments

Comments
 (0)