diff options
author | Alexander | 2022-04-25 20:53:11 +0300 |
---|---|---|
committer | Alexander | 2022-04-25 20:53:11 +0300 |
commit | 88434e9bf1724ee6ef1a1d7a70bdf5d112a9bb62 (patch) | |
tree | 2e3eea6d7cb275285727b9522976461e2b754c14 /issues/implement-parallel-correlation-with-rust.gmi | |
parent | cb85e02461198d21c62cc9b3027e8988aca0786f (diff) | |
download | gn-gemtext-88434e9bf1724ee6ef1a1d7a70bdf5d112a9bb62.tar.gz |
New issue:Implement parallel correlation with rust
Diffstat (limited to 'issues/implement-parallel-correlation-with-rust.gmi')
-rw-r--r-- | issues/implement-parallel-correlation-with-rust.gmi | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/issues/implement-parallel-correlation-with-rust.gmi b/issues/implement-parallel-correlation-with-rust.gmi new file mode 100644 index 0000000..d90fccb --- /dev/null +++ b/issues/implement-parallel-correlation-with-rust.gmi @@ -0,0 +1,46 @@ +# Implementing parallel correlation with rust + +### Notes + +In an attempt to speed the current gn2 correlation +we are doing an reimplentation in rust to support +parralel computation + + +## Tags + +* assigned:alexm +* type: upgrade +* priority: medium +* status: in progress +* keywords: correlation,rust,parralel + + +## Tasks + +- [X] implementation of basic pearson and spearman correlation in rust + +- [ ] add unittests + +- [ ] loading datasets;format + +- [ ] add parralel computation + + +- [ ] code optimization: modularization,lazy_loading,iterator, + + +- [ ] python support:importing rust code from python as a lib + +- [ ] gn2 integration + + + + + +## Notes + +code can be found here: + +- https://github.com/Alexanderlacuna/correlation_rust.git + |