# MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
#
# Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
from ..qat import quant_dequant as QAT
from .module import QuantizedModule
[文档]class QuantStub(QuantizedModule):
r"""Quantized version of :class:`~.qat.QuantStub`,
will convert input to quantized dtype.
"""
def __init__(self, dtype=None, **kwargs):
super().__init__(**kwargs)
self.output_dtype = dtype
[文档] def forward(self, inp):
return inp.astype(self.output_dtype)
[文档] @classmethod
def from_qat_module(cls, qat_module: QAT.QuantStub):
return cls(qat_module.get_activation_dtype(), name=qat_module.name)
[文档]class DequantStub(QuantizedModule):
r"""Quantized version of :class:`~.qat.DequantStub`,
will restore quantized input to float32 dtype.
"""
[文档] def forward(self, inp):
return inp.astype("float32")
[文档] @classmethod
def from_qat_module(cls, qat_module: QAT.DequantStub):
return cls(name=qat_module.name)