()
| 188 | |
| 189 | |
| 190 | def test_conv(): |
| 191 | conv = M.Conv2d(3, 32, 3) |
| 192 | |
| 193 | @trace(symbolic=True, capture_as_const=True) |
| 194 | def fwd(data): |
| 195 | return conv(data) |
| 196 | |
| 197 | data = Tensor(np.random.random((1, 3, 32, 32))) |
| 198 | result = fwd(data) |
| 199 | check_pygraph_dump(fwd, [data], [result]) |
| 200 | |
| 201 | |
| 202 | def test_deformable_conv(): |
nothing calls this directly
no test coverage detected