Skip to main content

BatchedOperationInvocation

Struct BatchedOperationInvocation 

Source
pub struct BatchedOperationInvocation<'a, B> { /* private fields */ }
Expand description

Borrowed provider view for exactly one physical command. Participant-local resources remain separate projections while invocation/step/plan resources may be shared by every projection.

Implementations§

Source§

impl<'a, B> BatchedOperationInvocation<'a, B>

Source

pub fn batch_identity(&self) -> &BatchOperationIdentity

Source

pub fn participants(&self) -> &[OperationInvocation<'a, B>]

Source

pub fn operation(&self) -> &OperationDescriptor

Source

pub fn node_id(&self) -> &NodeId

Source

pub fn provider_id(&self) -> &ProviderId

Source

pub fn work_shape(&self) -> &BatchWorkShape

Source

pub fn work_contract(&self) -> &NodeWorkContract

Source

pub fn program_binding(&self) -> Option<&ProgramBindingNodeBinding>

Source

pub fn attach_binding_command<C>( &self, operation: EncodedDeviceOperation<C>, command: C, ) -> EncodedDeviceOperation<C>

Attaches the command that refreshes this provider’s invocation-scoped binding workspace. A compiled slot moves the command into the non-aliasing wave prelude; without that authority it remains adjacent to the eager compute command.

Source

pub fn participant_token_ranges(&self) -> &[BatchParticipantTokenRange]

Source

pub fn binding_uses_packed_batch_coordinates( &self, role: ResolvedValueRole, ordinal: u32, ) -> Result<bool, VNextError>

Returns whether one exact resolved binding uses the packed token coordinate space of this physical batch. This is deliberately distinct from physical sharing: Request backing can be shared by child sequences while still using source-token coordinates.

Auto Trait Implementations§

§

impl<'a, B> !RefUnwindSafe for BatchedOperationInvocation<'a, B>

§

impl<'a, B> !UnwindSafe for BatchedOperationInvocation<'a, B>

§

impl<'a, B> Freeze for BatchedOperationInvocation<'a, B>

§

impl<'a, B> Send for BatchedOperationInvocation<'a, B>
where Vec<OperationInvocation<'a, B>>: Send,

§

impl<'a, B> Sync for BatchedOperationInvocation<'a, B>
where Vec<OperationInvocation<'a, B>>: Sync,

§

impl<'a, B> Unpin for BatchedOperationInvocation<'a, B>
where Vec<OperationInvocation<'a, B>>: Unpin,

§

impl<'a, B> UnsafeUnpin for BatchedOperationInvocation<'a, B>

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> 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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = !

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