Registry / other / gemm
library0.19.0rscratesunverified

Playground for matrix multiplication algorithms.

# Cargo.toml [dependencies] gemm = "0.19.0"
INSTALL
IMPORT
SIG · GEMM
G
gemm
otherrustv0.19.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Gemm
use gemm::Gemm;

Perform a matrix multiplication.

use gemm::Gemm; fn main() { let a = vec![1.0, 2.0, 3.0, 4.0]; let b = vec![5.0, 6.0, 7.0, 8.0]; let mut c = vec![0.0; 4]; Gemm::new(2, 2, 2).run(&a, &b, &mut c); println!("{:?}", c); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.19.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
gemm — cargo add gemm · libregistry