Skip to content

Commit

Permalink
add cudf namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyann committed Dec 7, 2021
1 parent 1ba7438 commit de4ef10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/benchmarks/fixture/templated_benchmark_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ class FunctionTemplateBenchmark : public Fixture {
virtual void BenchmarkCase(::benchmark::State& st) { func_(st); }
};

#define TEMPLATED_BENCHMARK_F(BaseClass, n, ...) \
BENCHMARK_PRIVATE_DECLARE(n) = \
(::benchmark::internal::RegisterBenchmarkInternal(new FunctionTemplateBenchmark<BaseClass>( \
#BaseClass "/" #n "<" #__VA_ARGS__ ">", n<__VA_ARGS__>)))
#define TEMPLATED_BENCHMARK_F(BaseClass, n, ...) \
BENCHMARK_PRIVATE_DECLARE(n) = (::benchmark::internal::RegisterBenchmarkInternal( \
new cudf::FunctionTemplateBenchmark<BaseClass>(#BaseClass "/" #n "<" #__VA_ARGS__ ">", \
n<__VA_ARGS__>)))

} // namespace cudf

0 comments on commit de4ef10

Please sign in to comment.