| 750 | } |
| 751 | |
| 752 | bool ROCMBlas::DoBlasSwap(Stream *stream, uint64 elem_count, |
| 753 | DeviceMemory<float> *x, int incx, |
| 754 | DeviceMemory<float> *y, int incy) { |
| 755 | return DoBlasInternal(wrap::rocblas_sswap, stream, |
| 756 | true /* = pointer_mode_host */, elem_count, |
| 757 | GpuMemoryMutable(x), incx, GpuMemoryMutable(y), incy); |
| 758 | } |
| 759 | |
| 760 | bool ROCMBlas::DoBlasSwap(Stream *stream, uint64 elem_count, |
| 761 | DeviceMemory<double> *x, int incx, |
nothing calls this directly
no test coverage detected