Skip to main content

InlinePtxOp

Struct InlinePtxOp 

Source
pub struct InlinePtxOp { /* private fields */ }
Expand description

Inline PTX. Restricted to zero or one results because C++ semantics are too hard otherwise. Note that this does not directly map to PTX, because it actually destructures vectors to PTX vector expressions automatically. This means more than one register can be returned if it’s part of a vector expression. To denote the difference, the syntax uses $0, $1 etc for Pliron values, as opposed to the usual %0, %1 etc for the PTX registers.

§Attribute(s):

Note: Only attributes defined directly as part of this operation are listed here. There may be others, not listed here, defined by interface implementations.

NameStatic Name IdentifierType
cuda_inline_ptx_ptxATTR_KEY_CUDA_INLINE_PTX_PTXStringAttr
cuda_inline_ptx_volatileATTR_KEY_CUDA_INLINE_PTX_VOLATILEUnitAttr
cuda_inline_ptx_clobbersATTR_KEY_CUDA_INLINE_PTX_CLOBBERSVecAttr
cuda_inline_ptx_memory_clobbersATTR_KEY_CUDA_INLINE_PTX_MEMORY_CLOBBERSMemoryClobbersAttr
cuda_inline_ptx_in_specATTR_KEY_CUDA_INLINE_PTX_IN_SPECInputSpecsAttr

Implementations§

Source§

impl InlinePtxOp

Source

pub fn get_attr_cuda_inline_ptx_ptx<'a>( &self, ctx: &'a Context, ) -> Option<Ref<'a, StringAttr>>

Get a Ref to the value of the attribute named cuda_inline_ptx_ptx. The Ref is a borrow of the containing Operation object.

Source

pub fn set_attr_cuda_inline_ptx_ptx(&self, ctx: &Context, value: StringAttr)

Set the value of the attribute named cuda_inline_ptx_ptx.

Source

pub fn get_attr_cuda_inline_ptx_volatile<'a>( &self, ctx: &'a Context, ) -> Option<Ref<'a, UnitAttr>>

Get a Ref to the value of the attribute named cuda_inline_ptx_volatile. The Ref is a borrow of the containing Operation object.

Source

pub fn set_attr_cuda_inline_ptx_volatile(&self, ctx: &Context, value: UnitAttr)

Set the value of the attribute named cuda_inline_ptx_volatile.

Source

pub fn get_attr_cuda_inline_ptx_clobbers<'a>( &self, ctx: &'a Context, ) -> Option<Ref<'a, VecAttr>>

Get a Ref to the value of the attribute named cuda_inline_ptx_clobbers. The Ref is a borrow of the containing Operation object.

Source

pub fn set_attr_cuda_inline_ptx_clobbers(&self, ctx: &Context, value: VecAttr)

Set the value of the attribute named cuda_inline_ptx_clobbers.

Source

pub fn get_attr_cuda_inline_ptx_memory_clobbers<'a>( &self, ctx: &'a Context, ) -> Option<Ref<'a, MemoryClobbersAttr>>

Get a Ref to the value of the attribute named cuda_inline_ptx_memory_clobbers. The Ref is a borrow of the containing Operation object.

Source

pub fn set_attr_cuda_inline_ptx_memory_clobbers( &self, ctx: &Context, value: MemoryClobbersAttr, )

Set the value of the attribute named cuda_inline_ptx_memory_clobbers.

Source

pub fn get_attr_cuda_inline_ptx_in_spec<'a>( &self, ctx: &'a Context, ) -> Option<Ref<'a, InputSpecsAttr>>

Get a Ref to the value of the attribute named cuda_inline_ptx_in_spec. The Ref is a borrow of the containing Operation object.

Source

pub fn set_attr_cuda_inline_ptx_in_spec( &self, ctx: &Context, value: InputSpecsAttr, )

Set the value of the attribute named cuda_inline_ptx_in_spec.

Source§

impl InlinePtxOp

Source

pub fn new( ctx: &mut Context, result_ty: Option<TypeHandle>, ptx: impl Display, inputs: Vec<Value>, ) -> Self

Source

pub fn new_volatile( ctx: &mut Context, result_ty: Option<TypeHandle>, ptx: impl Display, inputs: Vec<Value>, ) -> Self

Source

pub fn set_clobbers(&self, ctx: &Context, clobbers: Vec<String>)

Source

pub fn clobbers(&self, ctx: &Context) -> Vec<String>

Source

pub fn raw_ptx<'a>(&self, ctx: &'a Context) -> Ref<'a, str>

Source

pub fn is_volatile(&self, ctx: &Context) -> bool

Source

pub fn inputs(&self, ctx: &Context) -> Vec<Value>

Source

pub fn result(&self, ctx: &Context) -> Option<Value>

Trait Implementations§

Source§

impl Clone for InlinePtxOp

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for InlinePtxOp

Source§

impl Eq for InlinePtxOp

Source§

impl Hash for InlinePtxOp

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 MemoryEffects for InlinePtxOp

Source§

fn memory_effects(&self, ctx: &Context) -> Vec<MemoryEffect>

Source§

fn verify(_op: &(dyn Op + 'static), _ctx: &Context) -> Result<(), Error>
where Self: Sized,

Source§

fn has_effects(&self, ctx: &Context) -> bool

Source§

impl Op for InlinePtxOp

Source§

fn get_operation(&self) -> Ptr<Operation>

Get the underlying IR Operation
Source§

fn get_opid(&self) -> OpId

Get this Op’s OpId
Source§

fn get_opid_static() -> OpId

Get this Op’s OpId, without self reference.
Source§

fn get_concrete_op_info() -> (fn(Ptr<Operation>) -> OpBox, TypeId)
where Self: Sized,

Get details about the concrete Op type.
Source§

fn register(ctx: &mut Context)
where Self: Sized + Parsable<Arg = Vec<(Identifier, Location)>, Parsed = OpBox>,

Register Op in Context and add it to its dialect.
Source§

fn loc(&self, ctx: &Context) -> Location

Get Op’s location
Source§

impl OpToCPP<Cuda> for InlinePtxOp

Source§

fn to_cpp(&self, ctx: &Context) -> String

Source§

fn verify(_op: &dyn Op, _ctx: &Context) -> Result<()>
where Self: Sized,

Source§

impl Parsable for InlinePtxOp

Source§

type Arg = Vec<(Identifier, Location)>

Type of the argument that must be passed to the parser.
Source§

type Parsed = OpBox

The type of the parsed entity.
Source§

fn parse<'__pliron_parse>( state_stream: &mut StateStream<'__pliron_parse>, arg: Self::Arg, ) -> ParseResult<'__pliron_parse, Self::Parsed>

Define a parser using existing combinators and call into on Parser::parse_stream to get the final ParseResult. Use state_stream.state as necessary.
Source§

fn parser<'a>( arg: Self::Arg, ) -> Box<dyn Parser<Stream<Stream<Stream<Stream<IteratorStream<CharIterator<'a>>, SourcePosition>>>, State<'a>>, PartialState = (), Output = Self::Parsed> + 'a>
where Self::Parsed: 'a,

Get a parser combinator that can work on StateStream as its input.
Source§

impl PartialEq for InlinePtxOp

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl Printable for InlinePtxOp

Source§

fn fmt(&self, ctx: &Context, state: &State, fmt: &mut Formatter<'_>) -> Result

Source§

fn disp<'t, 'c>(&'t self, ctx: &'c Context) -> Box<dyn Display + 'c>
where 't: 'c,

Get a Display’able object from the given Context and default State.
Source§

fn print<'t, 'c>( &'t self, ctx: &'c Context, state: &State, ) -> Box<dyn Display + 'c>
where 't: 'c,

Get a Display’able object from the given Context and State.
Source§

impl SideEffects for InlinePtxOp

Source§

fn has_side_effects(&self, ctx: &Context) -> bool

Returns true if the operation has side effects, and false otherwise.
Source§

impl StructuralPartialEq for InlinePtxOp

Source§

impl Verify for InlinePtxOp

Source§

fn verify(&self, _ctx: &Context) -> Result<()>

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

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

Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Sync + Send>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<K, Q> Equivalent<Q> for K
where K: Borrow<Q> + ?Sized, Q: Eq + ?Sized,

Source§

fn equivalent(&self, key: &Q) -> bool

Compare self to key and return true if they are equal.
Source§

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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

Source§

fn comptime(self) -> Self

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

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> PrintableState for T
where T: Printable + 'static,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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 = !

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

fn try_from(value: U) -> Result<T, !>

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<T> TuneInputs for T
where T: Clone + Send + Sync + 'static,

Source§

type At<'a> = T

The concrete input type at lifetime 'a.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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