(self, groups, bias)
| 41 | |
| 42 | class TestNet(Module): |
| 43 | def __init__(self, groups, bias): |
| 44 | super().__init__() |
| 45 | self.quant = QuantStub() |
| 46 | self.dequant = DequantStub() |
| 47 | self.conv_bn = ConvBn2d( |
| 48 | in_channels, out_channels, kernel_size, groups=groups, bias=bias, |
| 49 | ) |
| 50 | |
| 51 | def forward(self, inp): |
| 52 | out = self.quant(inp) |
nothing calls this directly
no test coverage detected