BUG: fix premature overflow in i0 and i1 (#240) #761
This file contains hidden or 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: GPU jobs | |
| on: [ push, pull_request ] | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| cupy_tests: | |
| name: CuPy GPU | |
| runs-on: "cirun-scipy-onprem-gpu--${{ github.run_id }}" | |
| steps: | |
| - name: Checkout xsf repo | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| submodules: recursive | |
| - name: run nvidia-smi | |
| run: nvidia-smi | |
| - name: run nvidia-smi --query | |
| run: nvidia-smi --query | |
| - uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0 | |
| with: | |
| pixi-version: v0.75.0 | |
| manifest-path: pixi.toml | |
| cache: true | |
| cache-key: gpu-pixi- | |
| - name: Run CuPy tests | |
| run: pixi run test-cupy |