MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / DoBlasAxpy

Method DoBlasAxpy

tensorflow/stream_executor/rocm/rocm_blas.cc:451–457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449}
450
451bool 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
459bool ROCMBlas::DoBlasAxpy(Stream *stream, uint64 elem_count, double alpha,
460 const DeviceMemory<double> &x, int incx,

Callers

nothing calls this directly

Calls 2

GpuMemoryFunction · 0.85
GpuMemoryMutableFunction · 0.85

Tested by

no test coverage detected