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