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 95e4938 commit a97a536Copy full SHA for a97a536
README.md
@@ -72,6 +72,15 @@ fn main() {
72
}
73
```
74
75
+## Performance Issues
76
+
77
+Currently, the performance of computation of smoothing splines might be very low for a large data.
78
79
+The algorithm of sparse matrics mutliplication in sprs crate is not optimized for large diagonal
80
+matrices which causes a poor performance of computation of smoothing splines.
81
+See [issue](https://github.com/vbarrielle/sprs/issues/184) for details.
82
83
84
## Algorithms and implementations
85
86
The crate implementation is based on [ndaray](https://github.com/rust-ndarray/ndarray) and
0 commit comments