Enum burn::tensor::repr::NumericOperationDescription

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),
}
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§

§

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

§

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
§

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

§

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

Formats the value using the given formatter. Read more
§

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

§

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

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

impl<E> Hash for NumericOperationDescription<E>

§

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

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
§

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

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

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

§

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

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

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§

default 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
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

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

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,