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