Update rapids (#10435)

* [CI] Update RAPIDS to latest stable

* RMM.

---------

Co-authored-by: hcho3 <2532981+hcho3@users.noreply.github.com>
Co-authored-by: Philip Hyunsu Cho <chohyu01@cs.washington.edu>
This commit is contained in:
Jiaming Yuan
2024-06-18 05:01:57 +08:00
committed by GitHub
parent b4cc350ec5
commit b9e5229ff2
2 changed files with 3 additions and 3 deletions

View File

@@ -728,7 +728,7 @@ class RMMAllocator {
for (int i = 0; i < n_gpu; ++i) {
CHECK_EQ(cudaSetDevice(i), cudaSuccess);
cuda_mr.push_back(std::make_unique<CUDAMemoryResource>());
pool_mr.push_back(std::make_unique<PoolMemoryResource>(cuda_mr[i].get()));
pool_mr.push_back(std::make_unique<PoolMemoryResource>(cuda_mr[i].get(), 0ul));
}
CHECK_EQ(cudaSetDevice(current_device), cudaSuccess);
}