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