(self)
| 270 | def test_disable_quantize(): |
| 271 | class Net(Float.Module): |
| 272 | def __init__(self): |
| 273 | super().__init__() |
| 274 | self.conv = Float.ConvBnRelu2d(3, 3, 3) |
| 275 | self.conv.disable_quantize() |
| 276 | |
| 277 | def forward(self, x): |
| 278 | return self.conv(x) |
no test coverage detected