matrixmultiply_mt 0.2.1

Multithreaded Fork of bluss's matrixmultiply crate. General matrix multiplication of f32 and f64 matrices in Rust. Supports matrices with general strides. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize. `RUSTFLAGS="-C target-cpu=native"` is your friend here.
Documentation
[dependencies.generic-array]
version = "0.14"

[dependencies.lazy_static]
version = "1.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.num_cpus]
version = "1.10"

[dependencies.parking_lot]
version = "0.11"

[dependencies.rawpointer]
version = "0.2"

[dependencies.smallvec]
version = "1.6"

[dependencies.threadpool]
version = "1.7"

[dependencies.typenum]
version = "1.11"

[dependencies.typenum_loops]
version = "0.3"

[lib]
bench = false

[package]
authors = ["bluss", "J. Millard"]
description = "Multithreaded Fork of bluss's matrixmultiply crate. General matrix multiplication of f32 and f64 matrices in Rust. Supports matrices with general strides. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize. `RUSTFLAGS=\"-C target-cpu=native\"` is your friend here."
documentation = "https://bluss.github.io/matrixmultiply/"
edition = "2018"
keywords = ["matrix", "sgemm", "dgemm"]
license = "MIT/Apache-2.0"
name = "matrixmultiply_mt"
readme = "README.md"
repository = "https://github.com/millardjn/matrixmultiply_mt"
version = "0.2.1"
[profile.release]
opt-level = 3