pub trait MatmulPrecision:
Send
+ Sync
+ Copy
+ 'static {
type Lhs: MatrixPrecision;
type Rhs: MatrixPrecision;
type Acc: MatrixPrecision;
}Expand description
Matrix multiplication precisions.
Required Associated Types§
Sourcetype Lhs: MatrixPrecision
type Lhs: MatrixPrecision
Element type of lhs input tensor of the kernel.
Sourcetype Rhs: MatrixPrecision
type Rhs: MatrixPrecision
Element type of rhs input tensor of the kernel.
Sourcetype Acc: MatrixPrecision
type Acc: MatrixPrecision
Element type of acc input tensor of the kernel.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.