blob: 8be485abba41921a2c9117f15e4e05ac2b6ca4c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
# Only rebuild profile data if it doesn't exist
if [ ! -f mknes.gcda ]; then
./build.sh clean
./build.sh profile
./mknes -n 1 -f 1024 # Quick single run for profile generation
fi
./build.sh profile_release
# Run full benchmark
./mknes
|