feat: Support unaligned block memory accesses #1767
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: STARK Recursion Benchmark | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "stark-backend/**" | |
- "circuits/primitives/**" | |
- "vm/**" | |
- "toolchain/native-compiler/**" | |
- "lib/recursion/**" | |
- ".github/workflows/benchmark-call.yml" | |
label: | |
types: [created] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
AXIOM_FAST_TEST: "1" | |
jobs: | |
benchmark_small_e2e: | |
uses: ./.github/workflows/benchmark-call.yml | |
# run on non-draft pull request with label 'run-benchmark' | |
# and always run on push to main | |
if: | | |
(github.event_name == 'pull_request' && | |
(contains(github.event.pull_request.labels.*.name, 'run-benchmark') || | |
contains(github.event.pull_request.labels.*.name, 'run-benchmark-e2e'))) || | |
(github.event_name == 'push' && github.ref == 'refs/heads/main') | |
with: | |
instance_type: 64cpu-linux-arm64 | |
benchmark_name: small_e2e | |
secrets: inherit |