| 449 | } |
| 450 | |
| 451 | bool ROCMBlas::DoBlasAxpy(Stream *stream, uint64 elem_count, float alpha, |
| 452 | const DeviceMemory<float> &x, int incx, |
| 453 | DeviceMemory<float> *y, int incy) { |
| 454 | return DoBlasInternal(wrap::rocblas_saxpy, stream, |
| 455 | true /* = pointer_mode_host */, elem_count, &alpha, |
| 456 | GpuMemory(x), incx, GpuMemoryMutable(y), incy); |
| 457 | } |
| 458 | |
| 459 | bool ROCMBlas::DoBlasAxpy(Stream *stream, uint64 elem_count, double alpha, |
| 460 | const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected