(x, y)
| 83 | def test_elemwise(): |
| 84 | @trace(symbolic=True, capture_as_const=True) |
| 85 | def fwd(x, y): |
| 86 | z1 = x * y |
| 87 | z2 = x + y |
| 88 | z3 = z1 / z2 |
| 89 | z3 = z3 ** 3 |
| 90 | return z3 |
| 91 | |
| 92 | x = Tensor([1.0, 2.0]) |
| 93 | y = Tensor([3.0, 5.0]) |
no test coverage detected