pub struct InsertOperation<'c> { /* private fields */ }
Expand description
An insert
operation. Insert operation.
Takes an n-D source vector, an (n+k)-D destination vector and a k-D position and inserts the n-D source into the (n+k)-D destination at the proper position. Degenerates to a scalar or a 0-d vector source type when n = 0.
Example:
%2 = vector.insert %0, %1[3] : vector<8x16xf32> into vector<4x8x16xf32>
%5 = vector.insert %3, %4[3, 3, 3] : f32 into vector<4x8x16xf32>
%8 = vector.insert %6, %7[] : f32 into vector<f32>
%11 = vector.insert %9, %10[3, 3, 3] : vector<f32> into vector<4x8x16xf32>
Implementations§
source§impl<'c> InsertOperation<'c>
impl<'c> InsertOperation<'c>
sourcepub fn as_operation(&self) -> &Operation<'c>
pub fn as_operation(&self) -> &Operation<'c>
Returns a generic operation.
sourcepub fn builder(
context: &'c Context,
location: Location<'c>
) -> InsertOperationBuilder<'c, Unset, Unset, Unset, Unset>
pub fn builder( context: &'c Context, location: Location<'c> ) -> InsertOperationBuilder<'c, Unset, Unset, Unset, Unset>
Creates a builder.
pub fn res(&self) -> Result<OperationResult<'c, '_>, Error>
pub fn source(&self) -> Result<Value<'c, '_>, Error>
pub fn dest(&self) -> Result<Value<'c, '_>, Error>
pub fn position(&self) -> Result<ArrayAttribute<'c>, Error>
pub fn set_position(&mut self, value: ArrayAttribute<'c>)
Trait Implementations§
source§impl<'c> From<InsertOperation<'c>> for Operation<'c>
impl<'c> From<InsertOperation<'c>> for Operation<'c>
source§fn from(operation: InsertOperation<'c>) -> Self
fn from(operation: InsertOperation<'c>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c> RefUnwindSafe for InsertOperation<'c>
impl<'c> !Send for InsertOperation<'c>
impl<'c> !Sync for InsertOperation<'c>
impl<'c> Unpin for InsertOperation<'c>
impl<'c> UnwindSafe for InsertOperation<'c>
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