dequantize_tensor_arm Class — pytorch Architecture
Architecture documentation for the dequantize_tensor_arm class in QuantizedOpKernels.cpp from the pytorch codebase.
Entity Profile
Source Code
aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp lines 3696–3706
template <typename T>
void dequantize_tensor_arm(
const T* __restrict__ in,
float* __restrict__ out,
const int64_t N,
const float scale,
const int32_t zero_point) {
for (int i = 0; i < N; ++i) {
out[i] = dequantize_val<T>(scale, zero_point, in[i]);
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free