-
Notifications
You must be signed in to change notification settings - Fork 157
70 lines (58 loc) · 1.71 KB
/
hyper_threading_benchmarks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Benchmark Hyper Threading
on:
pull_request:
branches: [ '**' ]
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Python3 Build
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install test dependencies
run: |
pip install -r requirements.txt
sudo apt update
- name: Compile benchmarks progrmas
run: make cairo_bench_programs
- 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