Function hip_sys::hiprt::hipMemsetD32Async
source · pub unsafe extern "C" fn hipMemsetD32Async(
dst: *mut c_void,
value: i32,
count: usize,
stream: *mut ihipStream_t
) -> hipError_tExpand description
@brief Fills the memory area pointed to by dev with the constant integer value for specified number of times.
hipMemsetD32Async() is asynchronous with respect to the host, so the call may return before the memset is complete. The operation can optionally be associated to a stream by passing a non-zero stream argument. If stream is non-zero, the operation may overlap with operations in other streams.
@param[out] dst Pointer to device memory @param[in] value - Value to set for each byte of specified memory @param[in] count - number of values to be set @param[in] stream - Stream identifier @return #hipSuccess, #hipErrorInvalidValue, #hipErrorMemoryFree