mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-13 09:45:38 +07:00
9 lines
253 B
Bash
Executable File
9 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
|
cd $BUILD_DIR
|
|
|
|
./unbench/flat.hpp.unbench --benchmark_filter=_map_lookup --benchmark_format=csv > benchmark_map_lookup.csv
|
|
../../scripts/bench_drawer.py -f benchmark_map_lookup.csv
|