[array API] add jnp.linalg.diagonal #118
Workflow file for this run
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
name: JAX Array API | |
on: | |
workflow_dispatch: # allows triggering the workflow run manually | |
pull_request: # Automatically trigger on pull requests affecting particular files | |
branches: | |
- main | |
paths: | |
- '**workflows/jax-array-api.yml' | |
- '**experimental/array_api/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Checkout jax | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet: actions/checkout@v4 | |
- name: Checkout array-api-tests | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet: actions/checkout@v4 | |
with: | |
repository: data-apis/array-api-tests | |
# TODO(jakevdp) update this to a stable release/tag when available. | |
ref: 'ae0017abb7ed64308e9fd6193d82225765536dd1' # Latest commit as of 2024-01-10 | |
submodules: 'true' | |
path: 'array-api-tests' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # ratchet:actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install .[cpu] | |
python -m pip install -r array-api-tests/requirements.txt | |
- name: Run the test suite | |
env: | |
ARRAY_API_TESTS_MODULE: jax.experimental.array_api | |
JAX_ENABLE_X64: 'true' | |
run: | | |
cd ${GITHUB_WORKSPACE}/array-api-tests | |
pytest --ci array_api_tests --max-examples=5 --derandomize --disable-deadline --skips-file ${GITHUB_WORKSPACE}/jax/experimental/array_api/skips.txt |