We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@d
strict
I was looking at the broadcasting machinery in DD to implement strict for broadcast_dims, and stumbled across this:
broadcast_dims
using DimensionalData dv1 = rand(X(1:3)) dv2 = rand(X(2:4)) @d dv1 .* dv2 strict=false # works @d dv1 .= dv1 .* dv2 strict=false # errors
I think materialize! totally ignores the keywords/broadcast options here.
materialize!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was looking at the broadcasting machinery in DD to implement
strict
forbroadcast_dims
, and stumbled across this:I think
materialize!
totally ignores the keywords/broadcast options here.The text was updated successfully, but these errors were encountered: