gesvdaStridedBatched_buffersize Class — pytorch Architecture
Architecture documentation for the gesvdaStridedBatched_buffersize class in CUDASolver.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/cuda/linalg/CUDASolver.cpp lines 474–483
template<>
void gesvdaStridedBatched_buffersize<float>(
cusolverDnHandle_t handle, cusolverEigMode_t jobz, int rank, int m, int n, float *A, int lda, long long int strideA,
float *S, long long int strideS, float *U, int ldu, long long int strideU, float *V, int ldv, long long int strideV,
int *lwork, int batchSize
) {
TORCH_CUSOLVER_CHECK(cusolverDnSgesvdaStridedBatched_bufferSize(
handle, jobz, rank, m, n, A, lda, strideA, S, strideS, U, ldu, strideU, V, ldv, strideV, lwork, batchSize
));
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free