Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/benchmarks/fixture/nvbench_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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{}; }
Expand Down Expand Up @@ -112,7 +112,7 @@ struct nvbench_base_fixture {
}

cuda::mr::any_resource<cuda::mr::device_accessible> mr;
std::string rmm_mode{"pool"};
std::string rmm_mode{"async"};

std::string cuio_host_mode{"pinned_pool"};
};
Expand Down
Loading