(a, b)
| 185 | @pytest.mark.parametrize("is_symbolic", [None, True, False]) |
| 186 | def test_matmul_empty_tensor(shape_a, shape_b, is_symbolic): |
| 187 | def func(a, b): |
| 188 | return F.matmul(a, b) |
| 189 | |
| 190 | if is_symbolic is not None: |
| 191 | func = jit.trace(symbolic=is_symbolic)(func) |
no test coverage detected