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