initial commit

This commit is contained in:
Carl Pearson
2020-09-03 16:39:23 -06:00
commit f7e51a4b7d
7 changed files with 539 additions and 0 deletions

16
bin/empty.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "bench/bench.hpp"
#include <mpi.h>
void empty(bench::State &state) {
for (auto _ : state) {
}
}
int main(int argc, char **argv) {
bench::init(argc, argv);
bench::register_bench("empty", empty)->timing_root_rank()->no_iter_barrier();
bench::run_benchmarks();
bench::finalize();
}