Skip to content

Commit 4ca10e4

Browse files
authored
minor: remove parenthesis from function output
1 parent a2a23b0 commit 4ca10e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests_nccl/test_ncclutils_nccl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_allgather_differentsize_withrecbuf(par):
8383

8484
# Gathered array
8585
send_shapes = MPI.COMM_WORLD.allgather(local_array.shape)
86-
(send_buf, recv_buf) = _prepare_nccl_allgather_inputs(local_array, send_shapes)
86+
send_buf, recv_buf = _prepare_nccl_allgather_inputs(local_array, send_shapes)
8787
recv_buf = nccl_allgather(nccl_comm, send_buf, recv_buf)
8888
chunks = _unroll_nccl_allgather_recv(recv_buf, send_buf.shape, send_shapes)
8989
gathered_array = cp.concatenate(chunks)

0 commit comments

Comments
 (0)