Skip to content

Commit

Permalink
remove excess prints
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Feb 12, 2021
1 parent c780cfc commit d8cac45
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions csr/kernels/mkl/handle.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ def from_handle(h: mkl_h) -> CSR:

rowptrs = np.zeros(nrows + 1, dtype=np.intc)
nnz = 0
print('m', nnz, nrows, ncols)
for i in range(nrows):
print('r', nnz, sp[i], ep[i])
nnz += ep[i] - sp[i]
rowptrs[i + 1] = nnz
assert nnz == ep[nrows - 1]
Expand Down

0 comments on commit d8cac45

Please sign in to comment.