From 13d8b22907fb95817be7a75ee9fcc66ff2828999 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Tue, 14 Jun 2022 08:52:01 -0700 Subject: [PATCH] Add a noexcept --- python/rmm/_lib/device_buffer.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/rmm/_lib/device_buffer.pyx b/python/rmm/_lib/device_buffer.pyx index bc761c29c..d33198315 100644 --- a/python/rmm/_lib/device_buffer.pyx +++ b/python/rmm/_lib/device_buffer.pyx @@ -344,7 +344,7 @@ cdef void _copy_async(const void* src, void* dst, size_t count, ccudart.cudaMemcpyKind kind, - cuda_stream_view stream) nogil: + cuda_stream_view stream) nogil except *: """ Asynchronously copy data between host and/or device pointers