rok commented on code in PR #13302: URL: https://github.com/apache/arrow/pull/13302#discussion_r892604335
########## cpp/src/arrow/compute/kernels/scalar_temporal_benchmark.cc: ########## @@ -172,6 +194,10 @@ auto non_zoned = timestamp(TimeUnit::NANO); #define DECLARE_TEMPORAL_BENCHMARKS_ZONED(OP) \ BENCHMARK_TEMPLATE(BenchmarkTemporal, OP, zoned)->Apply(SetArgs); +#define DECLARE_TEMPORAL_BINARY_BENCHMARKS(OP) \ + BENCHMARK_TEMPLATE(BenchmarkTemporalBinary, OP, non_zoned)->Apply(SetArgs); \ + BENCHMARK_TEMPLATE(BenchmarkTemporalBinary, OP, zoned)->Apply(SetArgs); Review Comment: [A more complete example.](https://github.com/apache/arrow/blob/master/cpp/src/arrow/testing/generator.cc#L101-L155) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
