| 621 | } |
| 622 | |
| 623 | bool CUDABlas::DoBlasAxpy(Stream *stream, uint64 elem_count, float alpha, |
| 624 | const DeviceMemory<float> &x, int incx, |
| 625 | DeviceMemory<float> *y, int incy) { |
| 626 | return DoBlasInternal<float>( |
| 627 | cublasSaxpy, stream, true /* = pointer_mode_host */, elem_count, &alpha, |
| 628 | GpuMemory(x), incx, GpuMemoryMutable(y), incy); |
| 629 | } |
| 630 | |
| 631 | bool CUDABlas::DoBlasAxpy(Stream *stream, uint64 elem_count, double alpha, |
| 632 | const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected