gemv_fast_path Class — pytorch Architecture
Architecture documentation for the gemv_fast_path class in BlasKernel.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/BlasKernel.cpp lines 263–278
template <typename scalar_t>
static void gemv_fast_path(
[[maybe_unused]] const char* trans,
[[maybe_unused]] const int* m,
[[maybe_unused]] const int* n,
[[maybe_unused]] const scalar_t* alpha,
[[maybe_unused]] const scalar_t* a,
[[maybe_unused]] const int* lda,
[[maybe_unused]] const scalar_t* x,
[[maybe_unused]] const int* incx,
[[maybe_unused]] const scalar_t* beta,
[[maybe_unused]] scalar_t* y,
[[maybe_unused]] const int* incy) {
TORCH_INTERNAL_ASSERT(
false, "gemv_fast_path shouldn't be called for this configuration");
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free