We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
performance issues
1 parent aa128f5 commit 00c44c7Copy full SHA for 00c44c7
src/lib.rs
@@ -110,6 +110,15 @@
110
//! but not a slice of `AsArray` array-like because `ndarray::Array` does not implement `AsRef` trait
111
//! currently. In the future we might be able to support `AsArray` in n-dimensional grid data case.
112
//!
113
+//! # Performance Issues
114
+//!
115
+//! Currently, the performance of computation of smoothing splines might be very low for a large data.
116
117
+//! The algorithm of sparse matrices mutliplication in sprs crate is not optimized for large diagonal
118
+//! matrices which causes a poor performance of computation of smoothing splines.
119
+//! See [issue](https://github.com/vbarrielle/sprs/issues/184) for details.
120
121
+
122
123
mod errors;
124
mod ndarrayext;
0 commit comments