gesvdaStridedBatched Class — pytorch Architecture
Architecture documentation for the gesvdaStridedBatched class in CUDASolver.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/cuda/linalg/CUDASolver.cpp lines 533–542
template<>
void gesvdaStridedBatched<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,
float *work, int lwork, int *info, double *h_R_nrmF, int batchSize
) {
TORCH_CUSOLVER_CHECK(cusolverDnSgesvdaStridedBatched(
handle, jobz, rank, m, n, A, lda, strideA, S, strideS, U, ldu, strideU, V, ldv, strideV, work, lwork, info, h_R_nrmF, batchSize
));
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free