xgeqrf Class — pytorch Architecture
Architecture documentation for the xgeqrf class in CUDASolver.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/cuda/linalg/CUDASolver.cpp lines 1629–1647
template <>
void xgeqrf<float>(CUDASOLVER_XGEQRF_ARGTYPES(float)) {
TORCH_CUSOLVER_CHECK(cusolverDnXgeqrf(
handle,
params,
m,
n,
CUDA_R_32F,
reinterpret_cast<void*>(A),
lda,
CUDA_R_32F,
reinterpret_cast<void*>(tau),
CUDA_R_32F,
reinterpret_cast<void*>(bufferOnDevice),
workspaceInBytesOnDevice,
reinterpret_cast<void*>(bufferOnHost),
workspaceInBytesOnHost,
info));
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free