| 521 | } |
| 522 | |
| 523 | port::Status GpuExecutor::SynchronousMemcpy(DeviceMemoryBase* gpu_dst, |
| 524 | const void* host_src, uint64 size) { |
| 525 | return GpuDriver::SynchronousMemcpyH2D(context_, AsROCmDevicePtr(gpu_dst), |
| 526 | host_src, size); |
| 527 | } |
| 528 | |
| 529 | port::Status GpuExecutor::SynchronousMemcpy(void* host_dst, |
| 530 | const DeviceMemoryBase& gpu_src, |
nothing calls this directly
no test coverage detected