From 949b457847afb73136a6ef1eaa0a45b729cb63a9 Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Sun, 20 Oct 2024 21:43:49 +0300 Subject: [PATCH] Removed out-of-date doxygen comment --- src/cuda/api/stream.hpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/cuda/api/stream.hpp b/src/cuda/api/stream.hpp index cfef93a0..ce464aa6 100644 --- a/src/cuda/api/stream.hpp +++ b/src/cuda/api/stream.hpp @@ -1053,19 +1053,6 @@ inline CUresult write_value(CUstream stream_handle, CUdeviceptr addres return cuStreamWriteValue64(stream_handle, address, value, flags); } -/** - * A function used internally by this class as the host function to call directly; see - * @ref enqueue_t::host_function_call - but only with CUDA version 10.0 and later. - * - * @param stream_handle the ID of the stream for which a host function call was triggered - this - * will be passed by the CUDA runtime - * @param stream_wrapper_members_and_invokable a tuple, containing the information necessary to - * recreate the wrapper with which the callback is associated, without any additional CUDA API calls - - * plus the invokable which was passed to @ref enqueue_t::host_function_call, and which the programmer - * actually wants to be called. - * - * @note instances of this template are of type {@ref callback_t}. - */ template void enqueue_function_call(const stream_t& stream, Function function, void* argument) {