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