Skip to content

Commit a97a536

Browse files
committed
add performance issues section
1 parent 95e4938 commit a97a536

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ fn main() {
7272
}
7373
```
7474

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+
7584
## Algorithms and implementations
7685

7786
The crate implementation is based on [ndaray](https://github.com/rust-ndarray/ndarray) and

0 commit comments

Comments
 (0)