Use exponential backoff during job submission when ring buffers are full

Signed-off-by: Jeremy Ong <jcong@amazon.com>
This commit is contained in:
Jeremy Ong
2021-08-04 03:23:16 -06:00
parent 6ac74ad41e
commit 4d058f329b
2 changed files with 5 additions and 6 deletions
@@ -565,7 +565,6 @@ namespace Benchmark
graph->SubmitOnExecutor(*executor, &ev);
ev.Wait();
}
executor->Drain();
}
BENCHMARK_F(JobGraphBenchmarkFixture, FourToOneJoin)(benchmark::State& state)
@@ -596,7 +595,6 @@ namespace Benchmark
graph->SubmitOnExecutor(*executor, &ev);
ev.Wait();
}
executor->Drain();
}
} // namespace Benchmark
#endif