-
Notifications
You must be signed in to change notification settings - Fork 127
110 lines (91 loc) · 2.84 KB
/
benchmark.yaml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: Run and Cache Benchmarks
on: pull_request
jobs:
benchmark_sv1_criterion:
name: Run and cache criterion sv1 benchmarks
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.75.0
override: true
- name: Checkout repository
uses: actions/checkout@v2
- name: Benchmark
run: |
cd benches
cargo bench --bench criterion_sv1_benchmark > criterion_sv1_benchmarks.txt
- uses: actions/upload-artifact@v3
with:
name: criterion_sv1_benchmarks.txt
path: ./benches/criterion_sv1_benchmarks.txt
benchmark_sv2_criterion:
name: Run and cache criterion sv2 benchmarks
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.75.0
override: true
- name: Checkout repository
uses: actions/checkout@v2
- name: Benchmark
run: |
cd benches
cargo bench --bench criterion_sv2_benchmark > criterion_sv2_benchmarks.txt
- uses: actions/upload-artifact@v3
with:
name: criterion_sv2_benchmarks.txt
path: ./benches/criterion_sv2_benchmarks.txt
benchmark_sv1_iai:
name: Run and cache iai sv1 benchmarks
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.75.0
override: true
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind=1:3.18.1-1ubuntu2
- name: Benchmark
run: |
cd benches
cargo bench --bench iai_sv1_benchmark > iai_sv1_benchmarks.txt
- uses: actions/upload-artifact@v3
with:
name: iai_sv1_benchmarks.txt
path: ./benches/iai_sv1_benchmarks.txt
benchmark_sv2_iai:
name: Run and cache iai sv2 benchmarks
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.75.0
override: true
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Valgrind
run: |
sudo apt-get update
sudo apt-get install -y valgrind=1:3.18.1-1ubuntu2
- name: Benchmark
run: |
cd benches
cargo bench --bench iai_sv2_benchmark > iai_sv2_benchmarks.txt
- uses: actions/upload-artifact@v3
with:
name: iai_sv2_benchmarks.txt
path: ./benches/iai_sv2_benchmarks.txt