Skip to content

Commit d8cac45

Browse files
committed
remove excess prints
1 parent c780cfc commit d8cac45

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

csr/kernels/mkl/handle.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ def from_handle(h: mkl_h) -> CSR:
7575

7676
rowptrs = np.zeros(nrows + 1, dtype=np.intc)
7777
nnz = 0
78-
print('m', nnz, nrows, ncols)
7978
for i in range(nrows):
80-
print('r', nnz, sp[i], ep[i])
8179
nnz += ep[i] - sp[i]
8280
rowptrs[i + 1] = nnz
8381
assert nnz == ep[nrows - 1]

0 commit comments

Comments
 (0)