QuantizedGRUCell¶
- class aimet_torch.nn.QuantizedGRUCell(*args, **kwargs)[source]¶
 Quantized subclass of torch.nn.GRUCell
- forward(self, input: torch.Tensor, hx: torch.Tensor | None = None) torch.Tensor
 Quantized forward of torch.nn.GRUCell.
The input(s), parameter(s) (if any), and output(s) will be quantized with
self.input_quantizers,self.param_quantizers, andself.output_quantizersrespectively.For more information, see
QuantizationMixin.