| 387 | BM_SubgraphHelper(iters, num_nodes, false /* use_function_convention */); |
| 388 | } |
| 389 | static void BM_SubgraphFunctionConvention(int iters, int num_nodes) { |
| 390 | BM_SubgraphHelper(iters, num_nodes, true /* use_function_convention */); |
| 391 | } |
| 392 | BENCHMARK(BM_Subgraph)->Arg(100)->Arg(1000)->Arg(10000)->Arg(100000); |
| 393 | BENCHMARK(BM_SubgraphFunctionConvention) |
| 394 | ->Arg(100) |
nothing calls this directly
no test coverage detected