pub trait BatchedMatMul<T>{
// Required method
fn batched_matmul(&self, other: &Self) -> Self;
}Expand description
Trait to support batched matrix multiplication.
Required Methods§
fn batched_matmul(&self, other: &Self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".