| 706 | } |
| 707 | |
| 708 | bool ROCMBlas::DoBlasScal(Stream *stream, uint64 elem_count, float alpha, |
| 709 | DeviceMemory<float> *x, int incx) { |
| 710 | return DoBlasInternal(wrap::rocblas_sscal, stream, |
| 711 | true /* = pointer_mode_host */, elem_count, &alpha, |
| 712 | GpuMemoryMutable(x), incx); |
| 713 | } |
| 714 | |
| 715 | bool ROCMBlas::DoBlasScal(Stream *stream, uint64 elem_count, double alpha, |
| 716 | DeviceMemory<double> *x, int incx) { |
nothing calls this directly
no test coverage detected