bluss / matrixmultiply

General matrix multiplication of f32 and f64 matrices in Rust. Supports matrices with general strides.
https://docs.rs/matrixmultiply/
Apache License 2.0
209 stars 25 forks source link

Fix test build for non-x86 #49

Closed bluss closed 5 years ago

bluss commented 5 years ago

Fixes #48

bluss commented 5 years ago

Ok, it turns out the best we can do with that is to run "cargo check --tests", so we don't know if the tests pass (or link to binaries) on the other arch.

bluss commented 5 years ago

Seems like we can use https://github.com/japaric/trust and/or https://github.com/rust-embedded/cross to improve this later - for test runs.