Skip to content

Commit 14fc66c

Browse files
committed
sparse_mkl backend integration
1 parent 6557422 commit 14fc66c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygrank/core/backend/sparse_dot_mkl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
except Exception as e:
1414
__pygrank_sparse_dot_mkl_warning = True
1515
warnings.warn("sparse_dot_mkl could not be imported.\n"
16-
"Please check your environment setup."
16+
"Please check your environment setup.\n"
1717
"Falling back to numpy implementation for this backend.")
1818
warnings.warn(str(e))
1919

@@ -82,7 +82,7 @@ def conv(signal, M):
8282
if not __pygrank_sparse_dot_mkl_warning:
8383
__pygrank_sparse_dot_mkl_warning = True
8484
warnings.warn("sparse_dot_mkl failed to link for sparse matrix multiplication.\n"
85-
"Please check your environment setup."
85+
"Please check your environment setup.\n"
8686
"Falling back to numpy implementation for this backend.")
8787
warnings.warn(str(e))
8888
return signal * M

0 commit comments

Comments
 (0)