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

Method DoBlasSpr

tensorflow/stream_executor/cuda/cuda_blas.cc:1397–1404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1395}
1396
1397bool CUDABlas::DoBlasSpr(Stream *stream, blas::UpperLower uplo, uint64 n,
1398 float alpha, const DeviceMemory<float> &x, int incx,
1399 DeviceMemory<float> *ap) {
1400 return DoBlasInternal<float>(cublasSspr, stream,
1401 true /* = pointer_mode_host */,
1402 CUDABlasUpperLower(uplo), n, &alpha,
1403 GpuMemory(x), incx, GpuMemoryMutable(ap));
1404}
1405
1406bool CUDABlas::DoBlasSpr(Stream *stream, blas::UpperLower uplo, uint64 n,
1407 double alpha, const DeviceMemory<double> &x, int incx,

Callers

nothing calls this directly

Calls 3

GpuMemoryFunction · 0.85
GpuMemoryMutableFunction · 0.85
CUDABlasUpperLowerFunction · 0.70

Tested by

no test coverage detected