-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vload on Matrix{Float64}
#116
Comments
Maybe:
|
Thanks @KristofferC, problem solved! The performance difference is narrow for the two versions of my code, one with flattened matrix and the other with the original matrix plus your suggestion for |
|
Dear developers,
I need to access a Julia matrix
M
of size(4,ncol)
viavload
function in a performance-critical situation, where converting the matrixM
to a vector byvec(M)
is prohibited. How can I properly usevload
to access the k-th column ofM
, given that this matrix is properly padded (i.e.all(M[4,:] .== 0) == true
)? If I cannot do this, from where can I extent thevload
function?#feature-request
The text was updated successfully, but these errors were encountered: