-
Notifications
You must be signed in to change notification settings - Fork 56
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
Indexing not Stable #703
Comments
Thanks @Inzlinger , I'm looking into |
i am pretty sure that this is caused by the assumption if the index is a split @ClaudiaComito I have no objections to you looking into this one. i dont think that I will get to this for a little while otherwise. when i have more time available i will look at this again. |
@Inzlinger solving this issues requires communication, i.e. a distributed getitem (more like a get_distributed_item?). This would be needed and awesome and is on our list. If you want to start, you're very welcome! If you want we can organize a chat about how to proceed. |
Branch bugs/703-Indexing_not_Stable created! |
Description
When using indices to acces array elements the order in the result is not stable for different splits.
To Reproduce
With 1 process this gives [0, 1, 0, 1] as expected
Run this with n=2 and it changes the order to [0, 0, 1, 1].
Expected behavior
The same ordering in the result for all splits.
The text was updated successfully, but these errors were encountered: