-
Notifications
You must be signed in to change notification settings - Fork 16
113 lines (95 loc) · 3.15 KB
/
benchmark.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
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
111
112
113
name: Core Benchmarks
on:
push:
branches:
- master
workflow_dispatch:
jobs:
synthesis:
strategy:
matrix:
config: [basic, full]
name: Synthesis benchmarks
runs-on: ubuntu-latest
timeout-minutes: 40
container: ghcr.io/kuznia-rdzeni/amaranth-synth:ecp5
steps:
- uses: actions/checkout@v3
- name: Set ownership (Github Actions workaround)
run: |
# https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements-dev.txt
- name: Synthesize
run: PYTHONHASHSEED=0 ./scripts/synthesize.py --verbose --config ${{ matrix.config }}
- name: Print synthesis information
run: cat ./build/top.tim
- name: Collect Benchmark information
run: |
./scripts/parse_benchmark_info.py
cat ./benchmark.json
- name: Store benchmark result (Fmax)
uses: benchmark-action/github-action-benchmark@v1
if: github.ref == 'refs/heads/master'
with:
name: Fmax and LCs (${{ matrix.config }})
tool: 'customBiggerIsBetter'
output-file-path: './benchmark.json'
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
benchmark-data-dir-path: "dev/benchmark"
build-perf-benchmarks:
name: Build performance benchmarks
runs-on: ubuntu-latest
container: ghcr.io/kuznia-rdzeni/riscv-toolchain:2023.05.14
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build embench
run: cd test/external/embench && make
- uses: actions/upload-artifact@v3
with:
name: "embench"
path: |
test/external/embench/build
run-perf-benchmarks:
name: Run performance benchmarks
runs-on: ubuntu-latest
timeout-minutes: 60
container: ghcr.io/kuznia-rdzeni/verilator:v5.008
needs: build-perf-benchmarks
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set ownership (Github Actions workaround)
run: |
# https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements-dev.txt
- name: Generate Verilog
run: PYTHONHASHSEED=0 ./scripts/gen_verilog.py --verbose --config full
- uses: actions/download-artifact@v3
with:
name: "embench"
path: test/external/embench/build
- name: Run benchmarks
run: |
scripts/run_benchmarks.py
- name: Store benchmark result (IPC)
uses: benchmark-action/github-action-benchmark@v1
if: github.ref == 'refs/heads/master'
with:
name: Performance (IPC)
tool: 'customBiggerIsBetter'
output-file-path: './benchmark.json'
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
benchmark-data-dir-path: "dev/benchmark"