You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In test_manipulations.test_squeeze(), the "4D split tensor" test is commented out, as it leads to uneven distribution of columns across the ranks (PR #231).
Solution: in manipulations.squeeze() replace Allgather with Allgatherv, specify "displs" argument (see link below). This will be possible with the upcoming Allgatherv update (Issue #233).
In test_manipulations.test_squeeze(), the "4D split tensor" test is commented out, as it leads to uneven distribution of columns across the ranks (PR #231).
Solution: in manipulations.squeeze() replace Allgather with Allgatherv, specify "displs" argument (see link below). This will be possible with the upcoming Allgatherv update (Issue #233).
MPI_Allgatherv standard doc:
https://www.mpich.org/static/docs/latest/www3/MPI_Allgatherv.html
The text was updated successfully, but these errors were encountered: