| 657 | } |
| 658 | |
| 659 | bool CUDABlas::DoBlasCopy(Stream *stream, uint64 elem_count, |
| 660 | const DeviceMemory<float> &x, int incx, |
| 661 | DeviceMemory<float> *y, int incy) { |
| 662 | return DoBlasInternal<float>(cublasScopy, stream, |
| 663 | true /* = pointer_mode_host */, elem_count, |
| 664 | GpuMemory(x), incx, GpuMemoryMutable(y), incy); |
| 665 | } |
| 666 | |
| 667 | bool CUDABlas::DoBlasCopy(Stream *stream, uint64 elem_count, |
| 668 | const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected