| 932 | } |
| 933 | |
| 934 | bool ROCMBlas::DoBlasGer(Stream *stream, uint64 m, uint64 n, float alpha, |
| 935 | const DeviceMemory<float> &x, int incx, |
| 936 | const DeviceMemory<float> &y, int incy, |
| 937 | DeviceMemory<float> *a, int lda) { |
| 938 | return DoBlasInternal( |
| 939 | wrap::rocblas_sger, stream, true /* = pointer_mode_host */, m, n, &alpha, |
| 940 | GpuMemory(x), incx, GpuMemory(y), incy, GpuMemoryMutable(a), lda); |
| 941 | } |
| 942 | |
| 943 | bool ROCMBlas::DoBlasGer(Stream *stream, uint64 m, uint64 n, double alpha, |
| 944 | const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected