blob: 65f1a9049abbe535a34f2582d4c2edc61f6749c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
* [X] add unittests
* [X] 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
|