forked from jax-ml/jax
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rocm-main' into ci_rnn_final
- Loading branch information
Showing
475 changed files
with
30,885 additions
and
12,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI - Bazel CPU tests (RBE) | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
halt-for-connection: | ||
description: 'Should this workflow run wait for a remote connection?' | ||
type: choice | ||
required: true | ||
default: 'no' | ||
options: | ||
- 'yes' | ||
- 'no' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run_tests: | ||
if: github.event.repository.fork == false | ||
strategy: | ||
matrix: | ||
runner: ["linux-x86-n2-16", "linux-arm64-t2a-16"] | ||
|
||
runs-on: ${{ matrix.runner }} | ||
# TODO(b/369382309): Replace Linux Arm64 container with the ml-build container once it is available | ||
container: ${{ (contains(matrix.runner, 'linux-x86') && 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/ml-build:latest') || | ||
(contains(matrix.runner, 'linux-arm64') && 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/linux-arm64-arc-container:latest') }} | ||
|
||
env: | ||
JAXCI_HERMETIC_PYTHON_VERSION: "3.12" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Wait For Connection | ||
uses: google-ml-infra/actions/ci_connection@main | ||
with: | ||
halt-dispatch-input: ${{ inputs.halt-for-connection }} | ||
- name: Run Bazel CPU Tests with RBE | ||
run: ./ci/run_bazel_test_cpu_rbe.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: CI - Bazel GPU tests (RBE) | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
halt-for-connection: | ||
description: 'Should this workflow run wait for a remote connection?' | ||
type: choice | ||
required: true | ||
default: 'no' | ||
options: | ||
- 'yes' | ||
- 'no' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run_tests: | ||
if: github.event.repository.fork == false | ||
strategy: | ||
matrix: | ||
runner: ["linux-x86-n2-16"] | ||
|
||
runs-on: ${{ matrix.runner }} | ||
container: 'us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/ml-build:latest' | ||
|
||
env: | ||
JAXCI_HERMETIC_PYTHON_VERSION: "3.12" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Wait For Connection | ||
uses: google-ml-infra/actions/ci_connection@main | ||
with: | ||
halt-dispatch-input: ${{ inputs.halt-for-connection }} | ||
- name: Run Bazel GPU Tests with RBE | ||
run: ./ci/run_bazel_test_gpu_rbe.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.