diff options
author | Alexander | 2022-06-15 16:32:15 +0300 |
---|---|---|
committer | Alexander | 2022-06-15 16:32:15 +0300 |
commit | ef7b78965449ff15b882b8a1e79dcf5595e4bb1b (patch) | |
tree | 88ff02fd32ca7986fc6f4cefdbec82168fd57c99 /issues | |
parent | 91ee93fc26df5064d7c64bdaa4838669d23cdf53 (diff) | |
download | gn-gemtext-ef7b78965449ff15b882b8a1e79dcf5595e4bb1b.tar.gz |
update issue: implement parallel correlation with rust
Diffstat (limited to 'issues')
-rw-r--r-- | issues/implement-parallel-correlation-with-rust.gmi | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/issues/implement-parallel-correlation-with-rust.gmi b/issues/implement-parallel-correlation-with-rust.gmi index 65f1a90..b572b8f 100644 --- a/issues/implement-parallel-correlation-with-rust.gmi +++ b/issues/implement-parallel-correlation-with-rust.gmi @@ -20,19 +20,20 @@ parralel computation * [X] implementation of basic pearson and spearman correlation in rust -* [X] add unittests +* [X] add unittests and benchmarks * [X] loading datasets;format -* [ ] add parralel computation +* [X] package the library as a guix package + +* [ ] add parralel computation -* [ ] code optimization: modularization,lazy_loading,iterator, +* [ ] code optimization and minor fixes -* [ ] python support:importing rust code from python as a lib -* [ ] gn2 integration +* [ ] gn2 integration(WIP) @@ -40,7 +41,23 @@ parralel computation ## Notes +You can call the lib as an external process from any language or directly call +it in a rust cargo + + + code can be found here: => https://github.com/Alexanderlacuna/correlation_rust.git + +added a documentation for correlation rust + +=> https://github.com/Alexanderlacuna/correlation_rust/blob/main/README.md + + +PR for integrating to genenetwork: + +=> https://github.com/genenetwork/genenetwork3/pull/93 + + |