(target, dev, binary_arith_op_func)
| 241 | |
| 242 | @tvm.testing.parametrize_targets("llvm") |
| 243 | def test_binary_arith(target, dev, binary_arith_op_func): |
| 244 | data1_numpy = np.random.uniform(1, 2, (3, 3)).astype(np.float32) |
| 245 | data2_numpy = np.random.uniform(1, 2, (3, 3)).astype(np.float32) |
| 246 | relax_check_gradients(binary_arith_op_func, [data1_numpy, data2_numpy], target, dev) |
| 247 | |
| 248 | |
| 249 | (binary_minmax_op_func,) = tvm.testing.parameters( |
nothing calls this directly
no test coverage detected
searching dependent graphs…