From 0d42882ea74f37278687d65dd839cbef9c173838 Mon Sep 17 00:00:00 2001 From: Matthew Murray <41342305+Matt711@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:54:01 -0400 Subject: [PATCH] Update RMM imports to use `pylibrmm` (#283) This PR updates the RMM import to use `pylibrmm` now that `rmm._lib` is deprecated . It should be merged after https://github.com/rapidsai/rmm/pull/1676. Authors: - Matthew Murray (https://github.com/Matt711) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) URL: https://github.com/rapidsai/ucxx/pull/283 --- python/ucxx/ucxx/_lib/libucxx.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ucxx/ucxx/_lib/libucxx.pyx b/python/ucxx/ucxx/_lib/libucxx.pyx index c14843a2..81cbfd3b 100644 --- a/python/ucxx/ucxx/_lib/libucxx.pyx +++ b/python/ucxx/ucxx/_lib/libucxx.pyx @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. +# SPDX-FileCopyrightText: Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. # SPDX-License-Identifier: BSD-3-Clause @@ -31,7 +31,7 @@ from libcpp.vector cimport vector import numpy as np -from rmm._lib.device_buffer cimport DeviceBuffer +from rmm.pylibrmm.device_buffer cimport DeviceBuffer from .arr cimport Array from .ucxx_api cimport *