pub struct GcnProgram {
pub name: String,
pub kernels: Vec<GcnKernel>,
}Expand description
GCN 程序 (HSACO/ELF 包装)
Fields§
§name: String§kernels: Vec<GcnKernel>Implementations§
Trait Implementations§
Source§impl Clone for GcnProgram
impl Clone for GcnProgram
Source§fn clone(&self) -> GcnProgram
fn clone(&self) -> GcnProgram
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 GcnProgram
impl Debug for GcnProgram
Source§impl<'de> Deserialize<'de> for GcnProgram
impl<'de> Deserialize<'de> for GcnProgram
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
Auto Trait Implementations§
impl Freeze for GcnProgram
impl RefUnwindSafe for GcnProgram
impl Send for GcnProgram
impl Sync for GcnProgram
impl Unpin for GcnProgram
impl UnsafeUnpin for GcnProgram
impl UnwindSafe for GcnProgram
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