LibRapid / librapid

A highly optimised C++ library for mathematical applications and neural networks.
http://librapid.rtfd.io
MIT License
164 stars 10 forks source link

Matrix Transposition not working #77

Closed Pencilcaseman closed 2 years ago

Pencilcaseman commented 2 years ago

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? ```