Skip to content

Commit a85647c

Browse files
authored
Merge pull request #8 from SingleRust/dev-matrix-mul-optimization
Dev matrix mul optimization
2 parents 057074b + 4ca3863 commit a85647c

7 files changed

Lines changed: 428 additions & 196 deletions

File tree

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rust-analyzer.cargo.features": [
3+
4+
]
5+
}

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ description = "A Rust port of LAS2 from SVDLIBC"
44
keywords = ["svd"]
55
categories = ["algorithms", "data-structures", "mathematics", "science"]
66
name = "single-svdlib"
7-
version = "1.0.4"
7+
version = "1.0.5"
88
edition = "2021"
99
license-file = "SVDLIBC-LICENSE.txt"
1010

11+
[features]
12+
# simd = ["dep:simba", "single-utilities/simd"]
13+
1114
[dependencies]
1215
anyhow = "1.0.97"
1316
nalgebra-sparse = "0.10.0"
@@ -18,5 +21,6 @@ rayon = "1.10.0"
1821
thiserror = "2.0.9"
1922
nshare = {version = "0.10.0", features = ["nalgebra", "ndarray"] }
2023
ndarray = "0.16.1"
21-
single-utilities = "0.6.0"
24+
single-utilities = "0.8.0"
2225
nalgebra = {version = "0.33.2", features = ["rayon"] }
26+
simba = {version = "0.9.0", optional = true}

0 commit comments

Comments
 (0)