(target, dev)
| 322 | |
| 323 | @tvm.testing.parametrize_targets("llvm") |
| 324 | def test_triu(target, dev): |
| 325 | data_numpy = np.random.uniform(-1, 1, (3, 3)).astype(np.float32) |
| 326 | relax_check_gradients(relax.op.triu, [data_numpy], target, dev, k=0) |
| 327 | |
| 328 | |
| 329 | ##################### Statistical ##################### |
nothing calls this directly
no test coverage detected
searching dependent graphs…