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
213 stars 25 forks source link

Fix Send/Sync impls for future compat warning #69

Closed bluss closed 2 years ago

bluss commented 2 years ago

Add a "definitely non-Send/Sync" field to Ptr so that the explicit Send/Sync impls become unambiguous to the compiler.

This fixes the warning from rust-lang/rust#93367