Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Fontana authored and Pedro Fontana committed Mar 19, 2024
1 parent e1a8b2b commit 9e51cfa
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/hyper_threading_benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Benchmark PR

on: [pull_request]

jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: Install Rust
uses: dtolnay/[email protected]
with:
components: rustfmt, clippy

- name: Build PR Binary
run: |
cargo build -p hyper_threading --release
mv target/release/hyper_threading target/release/hyper_threading_pr
- name: Checkout main Branch
uses: actions/checkout@v2
with:
ref: 'main'

- name: Build main Binary
run: |
cargo build -p hyper_threading --release
mv target/release/hyper_threading target/release/hyper_threading_main
- name: Run Benchmarks
run: |
chmod +x hyper-threading.sh
echo "Benchmarking PR..."
./hyper-threading.sh target/release/hyper_threading_pr > results_pr.txt
echo "Benchmarking main..."
./hyper-threading.sh target/release/hyper_threading_main > results_main.txt
- name: Compare Results
run: |
echo "PR Results:"
cat results_pr.txt
echo "Main Results:"
cat results_main.txt
- name: Upload Results
uses: actions/upload-artifact@master
with:
name: benchmark-results
path: |
results_pr.txt
results_main.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

thread_counts=(1 2 4 5 6 7 8 9 10 11 12 13 14 16 32 )
binary="target/release/hyper_threading"
thread_counts=(1 2 4 6 8 10 12 14 16 )
binary="./target/release/hyper_threading"


cmd="hyperfine -r 1"
Expand Down

0 comments on commit 9e51cfa

Please sign in to comment.