Skip to content

Commit 3d0cc8f

Browse files
author
Ian
committed
added initial scaffolding for randomized SVD
1 parent 3a6fd32 commit 3d0cc8f

4 files changed

Lines changed: 614 additions & 0 deletions

File tree

Cargo.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ nalgebra-sparse = "0.10.0"
1313
ndarray = "0.16.1"
1414
num-traits = "0.2.19"
1515
rand = "0.9.0"
16+
rand_distr = "0.5.1"
1617
rayon = "1.10.0"
1718
thiserror = "2.0.9"

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ mod new;
44
mod masked;
55
pub(crate) mod utils;
66

7+
pub mod randomized;
8+
79
pub use new::*;
810
pub use masked::*;
911

0 commit comments

Comments
 (0)