Skip to content

Commit

Permalink
Replace atop with blockwise (#5289)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Aug 30, 2021
1 parent da2bccc commit 96cdc75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/tests/test_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ async def test_stress_communication(c, s, *workers):
n = 20
xs = [da.random.random((100, 100), chunks=(5, 5)) for i in range(n)]
ys = [x + x.T for x in xs]
z = da.atop(vsum, "ij", *concat(zip(ys, ["ij"] * n)), dtype="float64")
z = da.blockwise(vsum, "ij", *concat(zip(ys, ["ij"] * n)), dtype="float64")

future = c.compute(z.sum())

Expand Down

0 comments on commit 96cdc75

Please sign in to comment.