pub unsafe extern "C" fn cuParamSetv(
hfunc: CUfunction,
offset: c_int,
ptr: *mut c_void,
numbytes: c_uint,
) -> CUresult
Expand description
\brief Adds arbitrary data to the function’s argument list
\deprecated
Copies an arbitrary amount of data (specified in \p numbytes) from \p ptr into the parameter space of the kernel corresponding to \p hfunc. \p offset is a byte offset.
\param hfunc - Kernel to add data to \param offset - Offset to add data to argument list \param ptr - Pointer to arbitrary data \param numbytes - Size of data to copy in bytes
\return ::CUDA_SUCCESS, ::CUDA_ERROR_DEINITIALIZED, ::CUDA_ERROR_NOT_INITIALIZED, ::CUDA_ERROR_INVALID_CONTEXT, ::CUDA_ERROR_INVALID_VALUE \notefnerr
\sa ::cuFuncSetBlockShape, ::cuFuncSetSharedSize, ::cuFuncGetAttribute, ::cuParamSetSize, ::cuParamSetf, ::cuParamSeti, ::cuLaunch, ::cuLaunchGrid, ::cuLaunchGridAsync, ::cuLaunchKernel