================================================================================================
| 4058 | |
| 4059 | // ================================================================================================ |
| 4060 | hipError_t hipMemcpy2DToArrayAsync_spt(hipArray_t dst, size_t wOffset, size_t hOffset, |
| 4061 | const void* src, size_t spitch, size_t width, size_t height, |
| 4062 | hipMemcpyKind kind, hipStream_t stream) { |
| 4063 | HIP_INIT_API(hipMemcpy2DToArrayAsync, dst, wOffset, hOffset, src, spitch, width, height, kind, |
| 4064 | stream); |
| 4065 | PER_THREAD_DEFAULT_STREAM(stream); |
| 4066 | STREAM_CAPTURE(hipMemcpy2DToArrayAsync, stream, dst, wOffset, hOffset, src, spitch, width, height, |
| 4067 | kind); |
| 4068 | HIP_RETURN_DURATION(hipMemcpy2DToArray_common(dst, wOffset, hOffset, src, spitch, width, height, |
| 4069 | kind, stream, true)); |
| 4070 | } |
| 4071 | |
| 4072 | // ================================================================================================ |
| 4073 | hipError_t hipMemcpyAtoA(hipArray_t dstArray, size_t dstOffset, hipArray_t srcArray, |
nothing calls this directly
no test coverage detected