Struct tensorflow::ops::SparseMatrixMatMul
source · pub struct SparseMatrixMatMul { /* private fields */ }
Expand description
Builder for the SparseMatrixMatMul
operation.
Implementations§
source§impl SparseMatrixMatMul
impl SparseMatrixMatMul
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 adjoint_a<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn adjoint_a<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the adjoint_a
attribute.
sourcepub fn adjoint_b<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn adjoint_b<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the adjoint_b
attribute.
sourcepub fn transpose_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn transpose_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the transpose_output
attribute.
sourcepub fn conjugate_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn conjugate_output<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the conjugate_output
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 SparseMatrixMatMul
operation.
sourcepub fn build_instance(
&self,
a: Output,
b: Output,
scope: &mut Scope
) -> Result<SparseMatrixMatMulInst>
pub fn build_instance( &self, a: Output, b: Output, scope: &mut Scope ) -> Result<SparseMatrixMatMulInst>
Builds a new instance of ‘SparseMatrixMatMul’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for SparseMatrixMatMul
impl Debug for SparseMatrixMatMul
source§impl Default for SparseMatrixMatMul
impl Default for SparseMatrixMatMul
source§fn default() -> SparseMatrixMatMul
fn default() -> SparseMatrixMatMul
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SparseMatrixMatMul
impl Send for SparseMatrixMatMul
impl Sync for SparseMatrixMatMul
impl Unpin for SparseMatrixMatMul
impl UnwindSafe for SparseMatrixMatMul
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