()
| 177 | |
| 178 | |
| 179 | def test_svd(): |
| 180 | @trace(symbolic=True, capture_as_const=True) |
| 181 | def fwd(data): |
| 182 | _, out, _ = F.svd(data) |
| 183 | return out |
| 184 | |
| 185 | input = Tensor(np.random.random((1, 1, 3, 3))) |
| 186 | result = fwd(input) |
| 187 | check_pygraph_dump(fwd, [input], [result]) |
| 188 | |
| 189 | |
| 190 | def test_conv(): |
nothing calls this directly
no test coverage detected