Skip to content
Merged
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/include/cuml/common/pinned_host_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#pragma once

#include <rmm/mr/host/pinned_memory_resource.hpp>
#include <rmm/mr/pinned_host_memory_resource.hpp>

namespace ML {

Expand Down Expand Up @@ -56,7 +56,7 @@ class pinned_host_vector {
T& operator[](std::size_t idx) { return *(data_ + idx); }

private:
rmm::mr::pinned_memory_resource pinned_mr{};
rmm::mr::pinned_host_memory_resource pinned_mr{};
T* data_;
std::size_t size_;
};
Expand Down