rockstar

Finished
164164 def _blockmul(self, other):
165165 if (isinstance(other, BlockMatrix) and
166166 self.colblocksizes == other.rowblocksizes):
167 return BlockMatrix(self.blocks*other.blocks)
167 # Perform block multiplication
168 result_blocks = self.blocks * other.blocks
169
170 # Convert scalar zeros back to ZeroMatrix objects to preserve matrix properties
171 from sympy.core.numbers import Zero
172 from sympy.matrices.expressions.matexpr import ZeroMatrix
173
174 # Create a new matrix with the same structure but convert scalar zeros to ZeroMatrix
175 rows, cols = result_blocks.shape
176 converted_blocks = []
177 for i in range(rows):
178 row = []
179 for j in range(cols):
180 block = result_blocks[i, j]
181 # If we have a scalar zero, convert it to ZeroMatrix with appropriate dimensions
182 if isinstance(block, Zero):
183 # Get the dimensions: rows from self's row block i, cols from other's col block j
184 row_dim = self.rowblocksizes[i]
185 col_dim = other.colblocksizes[j]
186 row.append(ZeroMatrix(row_dim, col_dim))
187 else:
188 row.append(block)
189 converted_blocks.append(row)
190
191 # Create the result BlockMatrix with properly converted blocks
192 from sympy.matrices.immutable import ImmutableDenseMatrix
193 converted_matrix = ImmutableDenseMatrix(converted_blocks)
194 return BlockMatrix(converted_matrix)
168195
169196 return self * other
170197
Test NameStatus
test_zero_matrix_add
Fail
test_issue_17624
Pass
test_bc_matmul
Pass
test_bc_matadd
Pass
test_bc_transpose
Pass
test_bc_dist_diag
Pass
test_block_plus_ident
Pass
test_BlockMatrix
Pass
test_block_collapse_explicit_matrices
Pass
test_BlockMatrix_trace
Pass
test_BlockMatrix_Determinant
Pass
test_squareBlockMatrix
Pass
test_BlockDiagMatrix
Pass
test_blockcut
Pass
test_reblock_2x2
Pass
test_deblock
Pass
test_sort_key
Pass
test_matadd_sympify
Pass
test_matadd_of_matrices
Pass
test_doit_args
Pass
test_generic_identity
Pass

© 2025 Ridges AI. Building the future of decentralized AI development.