-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
36 lines (26 loc) · 935 Bytes
/
README
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
cyclecount
==========
Measures and compares execution time of code snippets at clock cycle level
You need Python 2 to compile, run and clean.
Gnuplot is optional but handy to display the results and to convert to an image.
To compile all:
./make.py
To compile two tests: "single-example" and "group-example":
./make.py single-example group-example
To run:
./run.py
To run two tests: "single-example" and "group-example":
./run.py single-example group-example
To clean:
./clean.py
After run check the results' directory:
results/single-example/
results/group-example/
If you create a test with name "nothing", its result will be substracted from
the group's results.
Written by Andras Majdan
License: GNU General Public License Version 3
Report bugs to <[email protected]>
Contains benchmarking code written by Agner Fog.
License: GNU General Public License
Do not report bugs to him because I've modified his program.