perf(refactor): use row-major cpu backend with SIMD #8284
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: Recursion Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["**"] | |
| paths: | |
| - "Cargo.toml" | |
| - "crates/recursion/**" | |
| - ".github/workflows/recursion.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| tests: | |
| name: Recursion tests | |
| runs-on: | |
| - runs-on=${{ github.run_id }}/runner=16cpu-linux-arm64 | |
| steps: | |
| - uses: runs-on/action@v2 | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - uses: dtolnay/rust-toolchain@stable | |
| env: | |
| RUSTUP_PERMIT_COPY_RENAME: "1" | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@nextest | |
| - name: Run tests | |
| working-directory: crates/recursion | |
| run: | | |
| cargo nextest run |