File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
except Exception as e :
14
14
__pygrank_sparse_dot_mkl_warning = True
15
15
warnings .warn ("sparse_dot_mkl could not be imported.\n "
16
- "Please check your environment setup."
16
+ "Please check your environment setup.\n "
17
17
"Falling back to numpy implementation for this backend." )
18
18
warnings .warn (str (e ))
19
19
@@ -82,7 +82,7 @@ def conv(signal, M):
82
82
if not __pygrank_sparse_dot_mkl_warning :
83
83
__pygrank_sparse_dot_mkl_warning = True
84
84
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 "
86
86
"Falling back to numpy implementation for this backend." )
87
87
warnings .warn (str (e ))
88
88
return signal * M
You can’t perform that action at this time.
0 commit comments