# 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.
import numpy as np
from ... import functional as F
from ...core.tensor import dtype
from ...tensor import Parameter
from ..qat import linear as QAT
from .module import QuantizedModule
[文档]class Linear(QuantizedModule):
r"""Quantized version of :class:`~.qat.Linear`."""
def __init__(self, dtype: np.dtype = None, **kwargs):
super().__init__(**kwargs)
self.weight = None
self.bias = None
self.output_dtype = dtype
[文档] def forward(self, inp):
if self.training:
raise ValueError("quantized module only support inference.")
inp_scale = dtype.get_scale(inp.dtype)
w_scale = dtype.get_scale(self.weight.dtype)
bias_dtype = dtype.qint32(inp_scale * w_scale)
ret = F.nn.linear(
inp,
self.weight,
None if self.bias is None else self.bias.astype(bias_dtype),
)
ret = ret if self.output_dtype is None else ret.astype(self.output_dtype)
return ret
[文档] @classmethod
def from_qat_module(cls, qat_module: QAT.Linear):
r"""
Return a :class:`~.QuantizedModule` instance converted from a
:class:`~.QATModule` instance.
"""
output_dtype = qat_module.get_activation_dtype()
qmod = cls(dtype=output_dtype, name=qat_module.name)
weight = qat_module.weight.astype(qat_module.get_weight_dtype())
qmod.weight = Parameter(weight.numpy(), name=qat_module.weight.name)
if qat_module.bias is not None:
qmod.bias = Parameter(qat_module.bias.numpy(), name=qat_module.bias.name)
return qmod