Skip to content

Commit

Permalink
Update compressor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
huangrh99 committed Nov 1, 2020
1 parent 508dc32 commit 414b91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autodist/kernel/synchronization/compressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,5 +300,5 @@ def _modified_gram_schmidt(matrix):

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

0 comments on commit 414b91b

Please sign in to comment.