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

Method DoBlasGer

tensorflow/stream_executor/rocm/rocm_blas.cc:934–941  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

932}
933
934bool 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
943bool ROCMBlas::DoBlasGer(Stream *stream, uint64 m, uint64 n, double alpha,
944 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