[docs]classLinearReLU(nnq.Linear):r""" A LinearReLU module fused from Linear and ReLU modules We adopt the same interface as :class:`torch.nn.quantized.Linear`. Attributes: Same as torch.nn.quantized.Linear Examples:: >>> m = nn.intrinsic.LinearReLU(20, 30) >>> input = torch.randn(128, 20) >>> output = m(input) >>> print(output.size()) torch.Size([128, 30]) """_FLOAT_MODULE=nni.LinearReLUdef__init__(self,in_features,out_features,bias=True,dtype=torch.qint8):super().__init__(in_features,out_features,bias,dtype)defforward(self,x:torch.Tensor)->torch.Tensor:returntorch.ops.quantized.linear_relu(x,self._packed_params._packed_params,self.scale,self.zero_point)def_get_name(self):return'QuantizedLinearReLU'@classmethoddeffrom_float(cls,mod):returnsuper(LinearReLU,cls).from_float(mod)
Docs
Access comprehensive developer documentation for PyTorch
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. As the current maintainers of this site, Facebook’s Cookies Policy applies. Learn more, including about available controls: Cookies Policy.