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

Method DoBlasHer

tensorflow/stream_executor/cuda/cuda_blas.cc:1245–1253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1243}
1244
1245bool CUDABlas::DoBlasHer(Stream *stream, blas::UpperLower uplo, uint64 n,
1246 float alpha,
1247 const DeviceMemory<std::complex<float>> &x, int incx,
1248 DeviceMemory<std::complex<float>> *a, int lda) {
1249 return DoBlasInternal<std::complex<float>>(
1250 cublasCher, stream, true /* = pointer_mode_host */,
1251 CUDABlasUpperLower(uplo), n, &alpha, GpuComplex(GpuMemory(x)), incx,
1252 GpuComplex(GpuMemoryMutable(a)), lda);
1253}
1254
1255bool CUDABlas::DoBlasHer(Stream *stream, blas::UpperLower uplo, uint64 n,
1256 double alpha,

Callers

nothing calls this directly

Calls 4

GpuComplexFunction · 0.85
GpuMemoryFunction · 0.85
GpuMemoryMutableFunction · 0.85
CUDABlasUpperLowerFunction · 0.70

Tested by

no test coverage detected