burn_tensor::repr

Enum NumericOperationDescription

Source
pub enum NumericOperationDescription<E> {
Show 45 variants Add(BinaryOperationDescription), AddScalar(ScalarOperationDescription<E>), Sub(BinaryOperationDescription), SubScalar(ScalarOperationDescription<E>), Div(BinaryOperationDescription), DivScalar(ScalarOperationDescription<E>), RemScalar(ScalarOperationDescription<E>), Mul(BinaryOperationDescription), MulScalar(ScalarOperationDescription<E>), Abs(UnaryOperationDescription), Ones(TensorDescription), Zeros(TensorDescription), Full((TensorDescription, E)), Gather(GatherOperationDescription), Scatter(ScatterOperationDescription), Select(SelectOperationDescription), SelectAssign(SelectAssignOperationDescription), MaskWhere(MaskWhereOperationDescription), MaskFill(MaskFillOperationDescription<E>), MeanDim(ScalarOperationDescription<usize>), Mean(UnaryOperationDescription), Sum(UnaryOperationDescription), SumDim(ScalarOperationDescription<usize>), Prod(UnaryOperationDescription), ProdDim(ScalarOperationDescription<usize>), EqualElem(ScalarOperationDescription<E>), Greater(BinaryOperationDescription), GreaterElem(ScalarOperationDescription<E>), GreaterEqual(BinaryOperationDescription), GreaterEqualElem(ScalarOperationDescription<E>), Lower(BinaryOperationDescription), LowerElem(ScalarOperationDescription<E>), LowerEqual(BinaryOperationDescription), LowerEqualElem(ScalarOperationDescription<E>), ArgMax(ScalarOperationDescription<usize>), ArgMin(ScalarOperationDescription<usize>), Max(UnaryOperationDescription), MaxDimWithIndices(ReduceDimWithIndicesDescription), MinDimWithIndices(ReduceDimWithIndicesDescription), Min(UnaryOperationDescription), MaxDim(ScalarOperationDescription<usize>), MinDim(ScalarOperationDescription<usize>), Clamp(ClampOperationDescription<E>), IntRandom(RandomOperationDescription), Powf(BinaryOperationDescription),
}
Available on crate feature repr only.
Expand description

Numeric operations on int and float tensors.

Variants§

§

Add(BinaryOperationDescription)

Operation corresponding to:

Float => add. Int => add.

§

AddScalar(ScalarOperationDescription<E>)

Operation corresponding to:

Float => add scalar. Int => add scalar.

§

Sub(BinaryOperationDescription)

Operation corresponding to:

Float => sub. Int => sub.

§

SubScalar(ScalarOperationDescription<E>)

Operation corresponding to:

Float => sub scalar. Int => sub scalar.

§

Div(BinaryOperationDescription)

Operation corresponding to:

Float => div. Int => div.

§

DivScalar(ScalarOperationDescription<E>)

Operation corresponding to:

Float => div scalar. Int => div scalar.

§

RemScalar(ScalarOperationDescription<E>)

Operation corresponding to:

Float => div. Int => div.

§

Mul(BinaryOperationDescription)

Operation corresponding to:

Float => mul. Int => mul.

§

MulScalar(ScalarOperationDescription<E>)

Operation corresponding to:

Float => mul scalar. Int => mul scalar.

§

Abs(UnaryOperationDescription)

Operation corresponding to:

Float => abs. Int => abs.

§

Ones(TensorDescription)

Operation corresponding to:

Float => ones. Int => ones.

§

Zeros(TensorDescription)

Operation corresponding to:

Float => zeros. Int => zeros.

§

Full((TensorDescription, E))

Operation corresponding to:

Float => full. Int => full.

§

Gather(GatherOperationDescription)

Operation corresponding to:

Float => gather. Int => gather.

§

Scatter(ScatterOperationDescription)

Operation corresponding to:

Float => scatter. Int => scatter.

§

Select(SelectOperationDescription)

Operation corresponding to:

Float => select. Int => select.

§

SelectAssign(SelectAssignOperationDescription)

Operation corresponding to:

Float => select assign. Int => select assign.

§

MaskWhere(MaskWhereOperationDescription)

Operation corresponding to:

Float => mask where. Int => mask where.

§

MaskFill(MaskFillOperationDescription<E>)

Operation corresponding to:

Float => mask fill. Int => mask fill.

§

MeanDim(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => mean dim. Int => mean dim.

§

Mean(UnaryOperationDescription)

Operation corresponding to:

Float => mean. Int => mean.

§

Sum(UnaryOperationDescription)

Operation corresponding to:

Float => sum. Int => sum.

§

SumDim(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => sum dim. Int => sum dim.

§

Prod(UnaryOperationDescription)

Operation corresponding to:

Float => prod. Int => prod.

§

ProdDim(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => prod dim. Int => prod dim.

§

EqualElem(ScalarOperationDescription<E>)

Operation corresponding to:

Float => equal elem. Int => equal elem.

§

Greater(BinaryOperationDescription)

Operation corresponding to:

Float => greater. Int => greater.

§

GreaterElem(ScalarOperationDescription<E>)

Operation corresponding to:

Float => greater elem. Int => greater elem.

§

GreaterEqual(BinaryOperationDescription)

Operation corresponding to:

Float => greater equal. Int => greater elem.

§

GreaterEqualElem(ScalarOperationDescription<E>)

Operation corresponding to:

Float => greater equal elem. Int => greater equal elem.

§

Lower(BinaryOperationDescription)

Operation corresponding to:

Float => lower. Int => lower.

§

LowerElem(ScalarOperationDescription<E>)

Operation corresponding to:

Float => lower elem. Int => lower elem.

§

LowerEqual(BinaryOperationDescription)

Operation corresponding to:

Float => lower equal. Int => lower equal.

§

LowerEqualElem(ScalarOperationDescription<E>)

Operation corresponding to:

Float => lower equal elem. Int => lower equal elem.

§

ArgMax(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => argmax. Int => argmax.

§

ArgMin(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => argmin. Int => argmin.

§

Max(UnaryOperationDescription)

Operation corresponding to:

Float => max. Int => max.

§

MaxDimWithIndices(ReduceDimWithIndicesDescription)

Operation corresponding to:

Float => max dim with indices. Int => max dim with indices.

§

MinDimWithIndices(ReduceDimWithIndicesDescription)

Operation corresponding to:

Float => min dim with indices. Int => min dim with indices.

§

Min(UnaryOperationDescription)

Operation corresponding to:

Float => min. Int => min.

§

MaxDim(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => max dim. Int => max dim.

§

MinDim(ScalarOperationDescription<usize>)

Operation corresponding to:

Float => min dim. Int => min dim.

§

Clamp(ClampOperationDescription<E>)

Operation corresponding to:

Float => clamp. Int => clamp.

§

IntRandom(RandomOperationDescription)

Operation corresponding to:

Int => random.

§

Powf(BinaryOperationDescription)

Operation corresponding to:

Float => powf. Int => powf.

Trait Implementations§

Source§

impl<E: Clone> Clone for NumericOperationDescription<E>

Source§

fn clone(&self) -> NumericOperationDescription<E>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E: Debug> Debug for NumericOperationDescription<E>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, E> Deserialize<'de> for NumericOperationDescription<E>
where E: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<E> Hash for NumericOperationDescription<E>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<E: PartialEq> PartialEq for NumericOperationDescription<E>

Source§

fn eq(&self, other: &NumericOperationDescription<E>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<E> Serialize for NumericOperationDescription<E>
where E: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<E> StructuralPartialEq for NumericOperationDescription<E>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,