https://github.com/shadensmith/spmv-rs
Noodling with sparse matrix vector multiplication in rust
https://github.com/shadensmith/spmv-rs
Last synced: about 1 year ago
JSON representation
Noodling with sparse matrix vector multiplication in rust
- Host: GitHub
- URL: https://github.com/shadensmith/spmv-rs
- Owner: ShadenSmith
- License: mit
- Created: 2024-08-08T16:55:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-08T16:59:58.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T19:51:33.084Z (about 1 year ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Setup
1. Install rust with [rustup](https://rustup.rs/): `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh`
2. Install [maturin](https://www.maturin.rs/): `cargo install maturin`
3. Build with: `maturin develop --release`
4. Test with: `pytest -sv tests/`