r"""A helper :class:`~.Module` simply returning input. Could be replaced with :class:`~.QATModule` version :class:`~.qat.DequantStub` using :func:`~.quantize.quantize_qat`.
| 11 | |
| 12 | |
| 13 | class DequantStub(Module): |
| 14 | r"""A helper :class:`~.Module` simply returning input. Could be replaced with :class:`~.QATModule` |
| 15 | version :class:`~.qat.DequantStub` using :func:`~.quantize.quantize_qat`. |
| 16 | """ |
| 17 | |
| 18 | def forward(self, inp): |
| 19 | return inp |