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

Method DoBlasHpr2

tensorflow/stream_executor/cuda/cuda_blas.cc:1335–1344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1333}
1334
1335bool CUDABlas::DoBlasHpr2(Stream *stream, blas::UpperLower uplo, uint64 n,
1336 std::complex<float> alpha,
1337 const DeviceMemory<std::complex<float>> &x, int incx,
1338 const DeviceMemory<std::complex<float>> &y, int incy,
1339 DeviceMemory<std::complex<float>> *ap) {
1340 return DoBlasInternal<std::complex<float>>(
1341 cublasChpr2, stream, true /* = pointer_mode_host */,
1342 CUDABlasUpperLower(uplo), n, GpuComplex(&alpha), GpuComplex(GpuMemory(x)),
1343 incx, GpuComplex(GpuMemory(y)), incy, GpuComplex(GpuMemoryMutable(ap)));
1344}
1345
1346bool CUDABlas::DoBlasHpr2(Stream *stream, blas::UpperLower uplo, uint64 n,
1347 std::complex<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