Skip to content

Commit

Permalink
Correct compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Mar 21, 2023
1 parent 7598431 commit b2e9970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/cudf_test/base_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ inline auto make_pool()
auto const [free, total] = rmm::detail::available_device_memory();
auto min_alloc =
rmm::detail::align_down(std::min(free, total / 10), rmm::detail::CUDA_ALLOCATION_ALIGNMENT);
return rmm::mr::make_owning_wrapper<rmm::mr::pool_memory_resource>(make_cuda(), {min_alloc});
return rmm::mr::make_owning_wrapper<rmm::mr::pool_memory_resource>(make_cuda(), min_alloc);
}

inline auto make_arena()
Expand Down

0 comments on commit b2e9970

Please sign in to comment.