| 483 | } |
| 484 | |
| 485 | bool ROCMBlas::DoBlasCopy(Stream *stream, uint64 elem_count, |
| 486 | const DeviceMemory<float> &x, int incx, |
| 487 | DeviceMemory<float> *y, int incy) { |
| 488 | return DoBlasInternal(wrap::rocblas_scopy, stream, |
| 489 | true /* = pointer_mode_host */, elem_count, |
| 490 | GpuMemory(x), incx, GpuMemoryMutable(y), incy); |
| 491 | } |
| 492 | |
| 493 | bool ROCMBlas::DoBlasCopy(Stream *stream, uint64 elem_count, |
| 494 | const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected