(x: R.Tensor((3, 3), dtype="float32"))
| 1777 | class Foo: |
| 1778 | @R.function |
| 1779 | def main(x: R.Tensor((3, 3), dtype="float32")): |
| 1780 | res = Foo.mul(x) |
| 1781 | return res |
| 1782 | |
| 1783 | @R.function |
| 1784 | def mul(x: R.Tensor((3, 3), dtype="float32")): |
no test coverage detected