chore: Move array types into rayexec_execution
(#3375)
#55
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: Benchmark | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
benchmark: | |
name: Run benchmarks | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Compile standard | |
run: | | |
cargo build \ | |
--release \ | |
--bin bench_standard | |
- name: Run standard | |
run: | | |
./target/release/bench_standard \ | |
--print-results \ | |
--print-explain |