Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/build_linux_jax_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ on:
tar_url:
description: URL to TheRock tarball to build against
type: string
jax_ref:
description: JAX ref to checkout
required: false
type: string
default: rocm-jaxlib-v0.7.1
workflow_dispatch:
inputs:
amdgpu_family:
Expand Down Expand Up @@ -57,16 +62,17 @@ on:
tar_url:
description: URL to TheRock tarball to build against
type: string
jax_ref:
description: JAX ref to checkout
type: string
default: "rocm-jaxlib-v0.7.1"

permissions:
id-token: write
contents: read

jobs:
build_jax_wheels:
strategy:
matrix:
jax_ref: [rocm-jaxlib-v0.7.1]
name: Build Linux JAX Wheels | ${{ inputs.amdgpu_family }} | Python ${{ inputs.python_version }}
runs-on: ${{ github.repository_owner == 'ROCm' && 'azure-linux-scale-rocm' || 'ubuntu-24.04' }}
env:
Expand All @@ -81,7 +87,7 @@ jobs:
with:
path: jax
repository: rocm/rocm-jax
ref: ${{ matrix.jax_ref }}
ref: ${{ inputs.jax_ref }}

- name: Configure Git Identity
run: |
Expand All @@ -102,7 +108,7 @@ jobs:
python3 build/ci_build \
--compiler=clang \
--python-versions="${{ inputs.python_versions }}" \
--rocm-version="${ROCM_VERSION:0:5}" \
--rocm-version="${ROCM_VERSION}" \
--therock-path="${{ inputs.tar_url }}" \
dist_wheels

Expand Down
Loading