File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 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
818jobs :
919 build :
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
3153 - name : Run Multiprocess GPU Test
3254 run : |
3355 python -m pytest tests/multiprocess_gpu_test.py
34-
You can’t perform that action at this time.
0 commit comments