()
| 118 | |
| 119 | |
| 120 | def test_matinv(): |
| 121 | @trace(symbolic=True, capture_as_const=True) |
| 122 | def fwd(data): |
| 123 | return F.matinv(data) |
| 124 | |
| 125 | data = Tensor(np.random.random((5, 5))) |
| 126 | result = fwd(data) |
| 127 | check_pygraph_dump(fwd, [data], [result]) |
| 128 | |
| 129 | |
| 130 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected