tinynn/graph/quantization/qat_modules.py [157:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
        self,
        in_channels: int,
        out_channels: int,
        kernel_size,
        stride=1,
        padding=0,
        output_padding=0,
        groups: int = 1,
        bias: bool = True,
        dilation=1,
        padding_mode: str = 'zeros',
        qconfig=None,
        device=None,
        dtype=None,
    ) -> None:
        if LooseVersion(torch.__version__) >= LooseVersion('1.9.0'):
            factory_kwargs = {'device': device, 'dtype': dtype}
        else:
            factory_kwargs = {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tinynn/graph/quantization/qat_modules.py [268:287]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(
        self,
        in_channels: int,
        out_channels: int,
        kernel_size,
        stride=1,
        padding=0,
        output_padding=0,
        groups: int = 1,
        bias: bool = True,
        dilation=1,
        padding_mode: str = 'zeros',
        qconfig=None,
        device=None,
        dtype=None,
    ) -> None:
        if LooseVersion(torch.__version__) >= LooseVersion('1.9.0'):
            factory_kwargs = {'device': device, 'dtype': dtype}
        else:
            factory_kwargs = {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



