From 0d9b38b46bb9f323bbdeaf658b186764a911fba9 Mon Sep 17 00:00:00 2001 From: Mark Harris <783069+harrism@users.noreply.github.com> Date: Wed, 24 Jan 2024 02:50:45 +0000 Subject: [PATCH] Remove deprecated rmm::detail::available_device_memory --- include/rmm/cuda_device.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/include/rmm/cuda_device.hpp b/include/rmm/cuda_device.hpp index 02017c3da..56520518a 100644 --- a/include/rmm/cuda_device.hpp +++ b/include/rmm/cuda_device.hpp @@ -116,20 +116,6 @@ inline std::pair available_device_memory() return {free, total}; } -namespace detail { - -/** - * @brief Returns the available and total device memory in bytes for the current device - * - * @deprecated Use rmm::available_device_memory() instead. - * - * @return The available and total device memory in bytes for the current device as a std::pair. - */ -[[deprecated("Use `rmm::available_device_memory` instead.")]] // -const auto available_device_memory = rmm::available_device_memory; - -} // namespace detail - /** * @brief Returns the approximate specified percent of available device memory on the current CUDA * device, aligned (down) to the nearest CUDA allocation size.