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