We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e456c48 commit 5584b06Copy full SHA for 5584b06
1 file changed
tests/unit/aggregation/_inputs.py
@@ -106,9 +106,7 @@ def _generate_semi_orthonormal_complement(Q: Tensor) -> Tensor:
106
scaled_matrices = [scale * matrix for scale in _scales for matrix in matrices]
107
zero_matrices = [torch.zeros([m, n]) for m, n in _zero_matrices_shapes]
108
matrices_2_plus_rows = [matrix for matrix in matrices + zero_matrices if matrix.shape[0] >= 2]
109
-scaled_matrices_2_plus_rows = [
110
- matrix for matrix in scaled_matrices + zero_matrices if matrix.shape[0] >= 2
111
-]
+scaled_matrices_2_plus_rows = [matrix for matrix in scaled_matrices if matrix.shape[0] >= 2]
112
strong_stationary_matrices = [
113
_generate_strong_stationary_matrix(m, n) for m, n in _stationary_matrices_shapes
114
]
0 commit comments