diff --git a/cpp/benchmarks/fixture/nvbench_fixture.hpp b/cpp/benchmarks/fixture/nvbench_fixture.hpp index ad938a358290..2ca7f4da5e21 100644 --- a/cpp/benchmarks/fixture/nvbench_fixture.hpp +++ b/cpp/benchmarks/fixture/nvbench_fixture.hpp @@ -32,7 +32,7 @@ static std::string cuio_host_mem_param{ /** * Base fixture for cudf benchmarks using nvbench. * - * Initializes the default memory resource to use the RMM pool device resource. + * Initializes the default memory resource to use the RMM async device resource. */ struct nvbench_base_fixture { inline auto make_cuda() { return rmm::mr::cuda_memory_resource{}; } @@ -112,7 +112,7 @@ struct nvbench_base_fixture { } cuda::mr::any_resource mr; - std::string rmm_mode{"pool"}; + std::string rmm_mode{"async"}; std::string cuio_host_mode{"pinned_pool"}; };