gemm Class — pytorch Architecture
Architecture documentation for the gemm class in CUDABlas.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/cuda/CUDABlas.cpp lines 1480–1489
template <>
void gemm<double>(CUDABLAS_GEMM_ARGTYPES(double)) {
auto tuning_ctx = at::cuda::tunable::getTuningContext();
if (tuning_ctx->IsTunableOpEnabled()) {
gemm_tunable<double>(CUDABLAS_GEMM_ARGS(double));
}
else {
gemm_internal<double>(CUDABLAS_GEMM_ARGS(double));
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free