abs Class — pytorch Architecture
Architecture documentation for the abs class in vec_base.h from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/cpu/vec/vec_base.h lines 390–399
template <
typename float_t_abs = T,
typename std::enable_if_t<is_floating_point_v<float_t_abs>, int> = 0>
Vectorized<T> abs() const {
// float_t_abs is for SFINAE and clarity. Make sure it is not changed.
static_assert(std::is_same_v<float_t_abs, T>, "float_t_abs must be T");
// Specifically deal with floating-point because the generic code above
// won't handle -0.0 (which should result in 0.0) properly.
return map([](T x) -> T { return std::abs(x); });
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free