Closed Pencilcaseman closed 2 years ago
Tested in Python
```python import librapid as lrp x = lrp.Array(lrp.Extent((1000, 1000)), "f32") x.transpose() # This doesn't work -- list type is invalid x.transpose(lrp.Extent()) # This gives the wrong output. Possibly a missing copy? ```
Tested in Python
View raw code
```python import librapid as lrp x = lrp.Array(lrp.Extent((1000, 1000)), "f32") x.transpose() # This doesn't work -- list type is invalid x.transpose(lrp.Extent()) # This gives the wrong output. Possibly a missing copy? ```