File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
- name : Build the benchmark target(s)
35
35
run : |
36
+ just build-instrumentation
36
37
just run
37
-
38
+
38
39
- name : Run the benchmarks
39
40
uses : CodSpeedHQ/action@v3
40
41
with :
65
66
66
67
- name : Build the benchmark target(s)
67
68
run : |
69
+ just build-walltime
68
70
just run
69
71
72
+
70
73
- name : Run the benchmarks
71
74
uses : CodSpeedHQ/action@v3
72
75
with :
Original file line number Diff line number Diff line change 1
1
clean :
2
2
rm -rf build
3
3
4
- run : build
4
+ run :
5
5
./ build/ cv-bench
6
6
7
7
build :
8
8
mkdir -p build
9
9
cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
10
10
cd build && ninja -j16
11
11
12
+ build-instrumentation :
13
+ mkdir -p build
14
+ cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCODSPEED_MODE=instrumentation ..
15
+ cd build && ninja -j16
16
+
17
+ build-walltime :
18
+ mkdir -p build
19
+ cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCODSPEED_MODE=walltime ..
20
+ cd build && ninja -j16
21
+
12
22
@ fmt :
13
23
clang-format -i src/ *.cpp
You can’t perform that action at this time.
0 commit comments