We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508dc32 commit 414b91bCopy full SHA for 414b91b
autodist/kernel/synchronization/compressor.py
@@ -300,5 +300,5 @@ def _modified_gram_schmidt(matrix):
300
301
rest = matrix[:, (i + 1):]
302
rest -= math_ops.reduce_sum_v1(v * rest, axis=0, keepdims=True) * v
303
- matrix = array_ops.concat([matrix[:, :i], v, rest], axis=1)
+ matrix = array_ops.concat([matrix[:, :i], v, rest], 1)
304
return matrix
0 commit comments