-
Notifications
You must be signed in to change notification settings - Fork 31
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
missing similar
method for PseudoBlockArray
(mapslices
unusable)
#226
Comments
This appears to work now: julia> mapslices(identity, b[1:5,:]; dims=1)
1×2-blocked 5×10 PseudoBlockMatrix{Float64, Matrix{Float64}, Tuple{Base.OneTo{Int64}, BlockedUnitRange{Vector{Int64}}}}:
0.89626 0.274113 0.703425 0.579062 0.989165 │ 0.372363 0.659855 0.689075 0.0578565 0.688581
0.278924 0.147276 0.791482 0.133684 0.0279632 │ 0.693008 0.0273849 0.594499 0.713912 0.2946
0.865734 0.00203172 0.184889 0.758688 0.9495 │ 0.271894 0.44169 0.467267 0.501292 0.692319
0.866907 0.894063 0.0381348 0.272919 0.926828 │ 0.248664 0.798704 0.807312 0.520421 0.859454
0.615061 0.603609 0.564914 0.263001 0.423267 │ 0.402052 0.452154 0.571618 0.00275745 0.0255126 |
It works in julia 1.6 and 1.9, but not in 1.7 or 1.8. |
Ah ok, worth looking into it then, as these versions are supported. Wonder what changed in v1.9 that makes this work? |
Seems to be this: JuliaLang/julia#40996 |
This is a regression introduced between 0.16.17 and 0.16.18
The text was updated successfully, but these errors were encountered: