getHermitianLimit Class — pytorch Architecture
Architecture documentation for the getHermitianLimit class in Math.h from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/Math.h lines 3043–3052
template<typename T>
constexpr auto getHermitianLimit() {
if constexpr (std::is_same_v<T, float>) {
return 128;
} else if constexpr (std::is_same_v<T, double>) {
return 512;
} else {
return 1024;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free