You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a DiskArrays LinearAlgebra interaction problem. mat' calls adjoint and this accesses the data with separate getindex calls for every value.
You can see that by setting up an AccessCountDiskArray see below.
If you don't need to have the adjoint you can use permutedims instead for switching the axes order. This should have special cases which would not access all data one by one.
convert(Matrix, x')
is so slow that I haven't gotten it to finish.convert(Matrix, x)
works just fine.The text was updated successfully, but these errors were encountered: