Skip to content

Commit

Permalink
You will bend to my will, machine
Browse files Browse the repository at this point in the history
  • Loading branch information
roigcarlo committed Oct 9, 2024
1 parent 77bad9e commit eb0d53f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kratos/tests/test_sparse_matrix_multiplication.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

# Additional imports
import os
import sys

import numpy as np

Expand All @@ -27,7 +28,7 @@ def __sparse_matrix_sum(self, file_name = "test_files/sparse_matrix_files/A.mm")

# Print A Matrix file
with open(file_name, "r") as f:
print(f.read())
print(f.read(), file=sys.stderr)

A_python = io.mmread(GetFilePath(file_name))
A_python.toarray()
Expand Down

0 comments on commit eb0d53f

Please sign in to comment.