Skip to content

Commit

Permalink
Mentioning known issues #273, #233 that will be addressed separately.
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiaComito committed May 27, 2019
1 parent 38396fb commit 59f2cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heat/core/manipulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def squeeze(x, axis=None):
displs = factories.zeros(x.comm.size, dtype=types.int64)
x.comm.Allgather(loffset, displs)

# x.comm.Allgatherv(x_lsqueezed, x_gsqueezed, displs) # TODO
# TODO: address uneven distribution of dimensions (Allgatherv). Issue #273, #233
x.comm.Allgather(x_lsqueezed, x_gsqueezed) # works with evenly distributed dimensions only
return dndarray.DNDarray(
x_gsqueezed,
Expand Down

0 comments on commit 59f2cc2

Please sign in to comment.