initial commit
This commit is contained in:
16
bin/empty.cpp
Normal file
16
bin/empty.cpp
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user