diff --git a/src/brevitas/core/quant/float.py b/src/brevitas/core/quant/float.py index 260b11110..65f56a134 100644 --- a/src/brevitas/core/quant/float.py +++ b/src/brevitas/core/quant/float.py @@ -94,6 +94,6 @@ def forward(self, x): # after quantizing, clamp to special cases like NaN/inf if they are set y, saturating, inf_values, nan_values = self.float_clamp_impl( y, self.exponent_bit_width(), self.mantissa_bit_width(), self.exponent_bias()) - y = self.dequantize(y, scale) + y = self.dequantize(y, scale) # This is to respect the current interface of proxies return y, scale, self.zero_point_impl(), self.exponent_bit_width(), self.mantissa_bit_width(), self.exponent_bias(), saturating, inf_values, nan_values