(x: R.Tensor((2, 3), "float32"))
| 28 | class Module: |
| 29 | @R.function |
| 30 | def main(x: R.Tensor((2, 3), "float32")) -> R.Tensor((), "int64"): |
| 31 | return R.size(x) |
| 32 | |
| 33 | x_np = np.random.rand(2, 3).astype("float32") |
| 34 | x = tvm.runtime.tensor(x_np) |
no test coverage detected