(A: R.Tensor([4096], "float32"))
| 659 | class Module: |
| 660 | @R.function |
| 661 | def main(A: R.Tensor([4096], "float32")): |
| 662 | B = R.memory.view(A) |
| 663 | return B |
| 664 | |
| 665 | built = tvm.compile(Module, target=target) |
| 666 | vm = tvm.relax.VirtualMachine(built, device=dev) |