()
| 166 | |
| 167 | |
| 168 | def test_dot(): |
| 169 | @trace(symbolic=True, capture_as_const=True) |
| 170 | def fwd(x, y): |
| 171 | return F.dot(x, y) |
| 172 | |
| 173 | x = Tensor([1.0, 2.0, 3.0]) |
| 174 | y = Tensor([3.0, 4.0, 5.0]) |
| 175 | result = fwd(x, y) |
| 176 | check_pygraph_dump(fwd, [x, y], [result]) |
| 177 | |
| 178 | |
| 179 | def test_svd(): |
nothing calls this directly
no test coverage detected