Skip to content

[JAX] add support for gather/scatter batching dims following the new attributes in stablehlo. #1632

[JAX] add support for gather/scatter batching dims following the new attributes in stablehlo.

[JAX] add support for gather/scatter batching dims following the new attributes in stablehlo. #1632

Workflow file for this run

name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: '30 2 * * *'
jobs:
build-and-test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.10", "3.11"]
os: [ubuntu-latest]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "${{ matrix.python-version }}"
- name: Run CI tests
run: bash test.sh
shell: bash