-
Notifications
You must be signed in to change notification settings - Fork 32
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
#1227 - Efficient subset check between CartesianProducts #2241
Conversation
there is a problem to extend one approach would be to handle the case where the blocks dims don't match instead of throwing an error. otoh, this pr shows that we don't test |
True, but the same holds for the |
sorry, what i meant in my comment is that if we merge this PR there is a regression as some subset checks no longer work as the one i gave.
ok, i see. then we should fix that too :) |
done ⛑️ |
cool!
i think that using internal functions is better than invoke, but we can fix that later.
when measuring small times (like hundreds of ms or smaller), |
Yeah, I mainly looked at the memory usage here. |
Closes #1227.
Additionally this PR adds a subset check between
CartesianProductArray
s of different block structure by using the fallback implementation.Tests were already present.