Skip to content

Commit 414b91b

Browse files
committed
Update compressor.py
1 parent 508dc32 commit 414b91b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autodist/kernel/synchronization/compressor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,5 +300,5 @@ def _modified_gram_schmidt(matrix):
300300

301301
rest = matrix[:, (i + 1):]
302302
rest -= math_ops.reduce_sum_v1(v * rest, axis=0, keepdims=True) * v
303-
matrix = array_ops.concat([matrix[:, :i], v, rest], axis=1)
303+
matrix = array_ops.concat([matrix[:, :i], v, rest], 1)
304304
return matrix

0 commit comments

Comments
 (0)