(A: R.Tensor)
| 28 | def test_infer_shape_of_1d_static_view(): |
| 29 | @R.function(private=True) |
| 30 | def explicit_sinfo(A: R.Tensor) -> R.Tensor([4096]): |
| 31 | B: R.Tensor([4096]) = R.memory.view(A, R.shape([4096])) |
| 32 | return B |
| 33 | |
| 34 | @R.function(private=True) |
| 35 | def inferred_sinfo(A: R.Tensor): |