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