Skip to content

Commit

Permalink
Mac accelerate (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbetcke authored Mar 14, 2024
1 parent d0cf6cb commit df26fee
Show file tree
Hide file tree
Showing 80 changed files with 1,485 additions and 2,861 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: Install Clang
run: sudo apt-get install -y libclang-dev

- name: Install Blas
run: sudo apt-get install -y libopenblas-dev

- name: Install CMake
run: sudo apt-get install -y cmake

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-weekly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Install Clang
run: sudo apt-get install -y libclang-dev

- name: Install Blas
run: sudo apt-get install -y libopenblas-dev

- name: Install CMake
run: sudo apt-get install -y cmake

Expand Down
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,4 @@
path = suitesparse-src/suitesparse
url = https://github.com/DrTimothyAldenDavis/SuiteSparse.git

[submodule "blis-src/blis"]
path = blis-src/blis
url = https://github.com/flame/blis.git

[submodule "netlib-lapack-src/lapack"]
path = netlib-lapack-src/lapack
url = https://github.com/Reference-LAPACK/lapack.git
4 changes: 0 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ members = [
"sparse",
"io",
"suitesparse-src",
"blis-src",
"umfpack",
"gfortran-src",
"netlib-lapack-src",
"blis",
"rlst",
"proc-macro",
]
21 changes: 0 additions & 21 deletions blis-src/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion blis-src/blis
Submodule blis deleted from d63955
50 changes: 0 additions & 50 deletions blis-src/build.rs

This file was deleted.

1 change: 0 additions & 1 deletion blis-src/src/lib.rs

This file was deleted.

20 changes: 0 additions & 20 deletions blis/Cargo.toml

This file was deleted.

29 changes: 0 additions & 29 deletions blis/build.rs

This file was deleted.

4 changes: 0 additions & 4 deletions blis/src/interface.rs

This file was deleted.

128 changes: 0 additions & 128 deletions blis/src/interface/gemm.rs

This file was deleted.

16 changes: 0 additions & 16 deletions blis/src/interface/types.rs

This file was deleted.

5 changes: 0 additions & 5 deletions blis/src/lib.rs

This file was deleted.

7 changes: 0 additions & 7 deletions blis/src/raw.rs

This file was deleted.

1 change: 0 additions & 1 deletion blis/src/wrapper.h

This file was deleted.

11 changes: 4 additions & 7 deletions dense/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[features]
strict = []

[package]
name = "rlst-dense"
version = "0.0.1"
Expand All @@ -22,19 +19,19 @@ num = {version = "0.4", features = ["serde", "rand"] }
rand = "0.8"
itertools = "0.12"
rand_distr = "0.4"
rlst-blis = { path = "../blis" }
approx = { version = "0.5", features = ["num-complex"] }
paste = "1"
rand_chacha = "0.3"
rlst-blis-src = { path = "../blis-src" }
rlst-netlib-lapack-src = { path = "../netlib-lapack-src" }
paste = "1"
lapack = "0.19.*"
thiserror = "1.0.40"
serde = "1.*"
blas = "0.22.*"


[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }

[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex-header.html"]

[features]
Loading

0 comments on commit df26fee

Please sign in to comment.