Faster primitive arrays encoding into row format #2
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: benchmarks | |
on: | |
pull_request: | |
jobs: | |
row-format-bench: | |
name: Row format bench | |
runs-on: ubuntu-latest | |
container: | |
image: amd64/rust | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup-builder | |
- name: Python-dev | |
run: | | |
apt-get update | |
apt-get install -yq python3.11-dev | |
- name: Install critcmp | |
run: cargo install --force critcmp | |
- name: Benchmark branch | |
run: | | |
echo BRANCH_COMMIT=`git log -n1 --oneline` >> $GITHUB_ENV | |
cargo bench --all-features --color always --bench row_format -- --save-baseline branch | |
- name: Checkout master | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
clean: false | |
ref: master | |
- name: Benchmark master | |
run: | | |
echo MASTER_COMMIT=`git log -n1 --oneline` >> $GITHUB_ENV | |
cargo bench --all-features --color always --bench row_format -- --save-baseline master | |
- name: Compare benchmark results | |
run: | | |
echo "Branch: ${{ env.BRANCH_COMMIT }}" | |
echo "Master: ${{ env.MASTER_COMMIT }}" | |
critcmp --color always master branch |