pub enum IntOperationIr {
Show 13 variants
IntoFloat(CastOpIr),
BitwiseAnd(BinaryOpIr),
BitwiseAndScalar(ScalarOpIr),
BitwiseOr(BinaryOpIr),
BitwiseOrScalar(ScalarOpIr),
BitwiseXor(BinaryOpIr),
BitwiseXorScalar(ScalarOpIr),
BitwiseNot(UnaryOpIr),
BitwiseLeftShift(BinaryOpIr),
BitwiseLeftShiftScalar(ScalarOpIr),
BitwiseRightShift(BinaryOpIr),
BitwiseRightShiftScalar(ScalarOpIr),
Matmul(MatmulOpIr),
}Expand description
Operation intermediate representation specific to an int tensor.
Variants§
IntoFloat(CastOpIr)
Operation corresponding to into float.
BitwiseAnd(BinaryOpIr)
Operation corresponding to:
Int => bitwise and.
BitwiseAndScalar(ScalarOpIr)
Operation corresponding to:
Int => bitwise and scalar.
BitwiseOr(BinaryOpIr)
Operation corresponding to:
Int => bitwise or.
BitwiseOrScalar(ScalarOpIr)
Operation corresponding to:
Int => bitwise or scalar.
BitwiseXor(BinaryOpIr)
Operation corresponding to:
Int => bitwise xor.
BitwiseXorScalar(ScalarOpIr)
Operation corresponding to:
Int => bitwise xor scalar.
BitwiseNot(UnaryOpIr)
Operation corresponding to:
Int => bitwise not.
BitwiseLeftShift(BinaryOpIr)
Operation corresponding to:
Int => bitwise left shift.
BitwiseLeftShiftScalar(ScalarOpIr)
Operation corresponding to:
Int => bitwise left shift scalar.
BitwiseRightShift(BinaryOpIr)
Operation corresponding to:
Int => bitwise right shift.
BitwiseRightShiftScalar(ScalarOpIr)
Operation corresponding to:
Int => bitwise right shift scalar.
Matmul(MatmulOpIr)
Operation corresponding to matmul.
Trait Implementations§
Source§impl Clone for IntOperationIr
impl Clone for IntOperationIr
Source§fn clone(&self) -> IntOperationIr
fn clone(&self) -> IntOperationIr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntOperationIr
impl Debug for IntOperationIr
Source§impl<'de> Deserialize<'de> for IntOperationIr
impl<'de> Deserialize<'de> for IntOperationIr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 Hash for IntOperationIr
impl Hash for IntOperationIr
Source§impl PartialEq for IntOperationIr
impl PartialEq for IntOperationIr
Source§impl Serialize for IntOperationIr
impl Serialize for IntOperationIr
impl StructuralPartialEq for IntOperationIr
Auto Trait Implementations§
impl Freeze for IntOperationIr
impl RefUnwindSafe for IntOperationIr
impl Send for IntOperationIr
impl Sync for IntOperationIr
impl Unpin for IntOperationIr
impl UnwindSafe for IntOperationIr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more