(method, *inps)
| 8 | |
| 9 | def test_module_elemwise(): |
| 10 | def test_func(method, *inps): |
| 11 | elemwise = Elemwise(method) |
| 12 | outputs = elemwise(*inps) |
| 13 | return outputs.numpy() |
| 14 | |
| 15 | x = np.random.rand(100).astype("float32") |
| 16 | y = np.random.rand(100).astype("float32") |
no test coverage detected