Home
last modified time | relevance | path

Searched refs:cudaMemcpy (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/tests/ut/cpp/stub/runtime/
Dcuda_runtime_api.cc22 cudaError_t cudaMemcpy(void *dst, const void *src, size_t count, enum cudaMemcpyKind kind) { return… in cudaMemcpy() function
Dcuda_runtime_api.h39 cudaError_t cudaMemcpy(void *dst, const void *src, size_t count, enum cudaMemcpyKind kind);
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/
Dcuda_driver.cc77 auto ret = cudaMemcpy(dst, src, size, cudaMemcpyHostToDevice); in CopyHostMemToDevice()
86 auto ret = cudaMemcpy(dst, src, size, cudaMemcpyDeviceToHost); in CopyDeviceMemToHost()
/third_party/mindspore/mindspore/lite/src/delegate/tensorrt/
Dtensorrt_allocator.cc116 auto cuda_ret = cudaMemcpy(dst_ptr, src_ptr, data_size, kind); in SyncMemInHostAndDevice()