-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·34 lines (29 loc) · 846 Bytes
/
build.sh
File metadata and controls
executable file
·34 lines (29 loc) · 846 Bytes
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
echo "## Build Dependencies (rtPerfLog)"
cd rtPerfLog
rm -r build
mkdir build
cd build
cmake ..
cmake --build .
cd ../..
echo "## Build performance test"
mkdir build
cd build
cmake ..
cmake --build . --target performance-none32
cmake --build . --target performance-an32
cmake --build . --target performance-onecmp32
cmake --build . --target performance-twocmp32
cmake --build . --target performance-res32
cmake --build . --target performance-none64
cmake --build . --target performance-an64
cmake --build . --target performance-onecmp64
cmake --build . --target performance-twocmp64
cmake --build . --target performance-res64
echo "## Build validation test"
cmake .. -DVAL_TIME=True
cmake --build . --target val-mul
cmake --build . --target val-mul-enc
echo "## Build fault sim and metrics test"
cmake --build . --target detcap
cd ..