Enum tract_linalg::frame::mmm::FusedSpec [−][src]
pub enum FusedSpec<'t> {
Min(&'t Tensor),
Max(&'t Tensor),
PerRowMul(&'t Tensor),
PerRowAdd(&'t Tensor),
PerColMul(&'t Tensor),
PerColAdd(&'t Tensor),
AddRowColProducts(&'t Tensor, &'t Tensor),
ScalarMul(&'t Tensor),
ScalarAdd(&'t Tensor),
AddUnicast(TensorView<'t>),
QScale(usize, RoundingPolicy, i32),
}
Variants
Min(&'t Tensor)
Tuple Fields of Min
0: &'t Tensor
Max(&'t Tensor)
Tuple Fields of Max
0: &'t Tensor
PerRowMul(&'t Tensor)
Tuple Fields of PerRowMul
0: &'t Tensor
PerRowAdd(&'t Tensor)
Tuple Fields of PerRowAdd
0: &'t Tensor
PerColMul(&'t Tensor)
Tuple Fields of PerColMul
0: &'t Tensor
PerColAdd(&'t Tensor)
Tuple Fields of PerColAdd
0: &'t Tensor
ScalarMul(&'t Tensor)
Tuple Fields of ScalarMul
0: &'t Tensor
ScalarAdd(&'t Tensor)
Tuple Fields of ScalarAdd
0: &'t Tensor
AddUnicast(TensorView<'t>)
Tuple Fields of AddUnicast
0: TensorView<'t>
QScale(usize, RoundingPolicy, i32)
Tuple Fields of QScale
Trait Implementations
Auto Trait Implementations
impl<'t> RefUnwindSafe for FusedSpec<'t>
impl<'t> UnwindSafe for FusedSpec<'t>
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more