Struct tensorflow::ops::RiscDot
source · pub struct RiscDot { /* private fields */ }
Expand description
Builder for the RiscDot
operation.
Implementations§
source§impl RiscDot
impl RiscDot
sourcepub fn transpose_a<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn transpose_a<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the transpose_a
attribute.
sourcepub fn transpose_b<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn transpose_b<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the transpose_b
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>>(
&self,
a: O0,
b: O1,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>>( &self, a: O0, b: O1, scope: &mut Scope ) -> Result<Operation>
Builds the RiscDot
operation.
sourcepub fn build_instance(
&self,
a: Output,
b: Output,
scope: &mut Scope
) -> Result<RiscDotInst>
pub fn build_instance( &self, a: Output, b: Output, scope: &mut Scope ) -> Result<RiscDotInst>
Builds a new instance of ‘RiscDot’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for RiscDot
impl Send for RiscDot
impl Sync for RiscDot
impl Unpin for RiscDot
impl UnwindSafe for RiscDot
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