QuantizedAvgPool3d¶
- class aimet_torch.nn.QuantizedAvgPool3d(*args, **kwargs)[source]¶
Quantized subclass of torch.nn.AvgPool3d
- forward(self, input: torch.Tensor) torch.Tensor
Quantized forward of torch.nn.AvgPool3d.
The input(s), parameter(s) (if any), and output(s) will be quantized with
self.input_quantizers
,self.param_quantizers
, andself.output_quantizers
respectively.For more information, see
QuantizationMixin
.