MCPcopy Create free account
hub / github.com/apache/arrow / BM_HashJoinBasic_MatchesPerRow

Function BM_HashJoinBasic_MatchesPerRow

cpp/src/arrow/acero/hash_join_benchmark.cc:280–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278}
279
280static void BM_HashJoinBasic_MatchesPerRow(benchmark::State& st) {
281 BenchmarkSettings settings;
282 settings.cardinality = 1.0 / static_cast<double>(st.range(0));
283
284 settings.num_build_batches = static_cast<int>(st.range(1));
285 settings.num_probe_batches = settings.num_build_batches;
286
287 HashJoinBasicBenchmarkImpl(st, settings);
288}
289
290static void BM_HashJoinBasic_PayloadSize(benchmark::State& st) {
291 BenchmarkSettings settings;

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected