Struct tensorflow::ops::LinSpace
source · pub struct LinSpace { /* private fields */ }
Expand description
Builder for the LinSpace
operation.
Implementations§
source§impl LinSpace
impl LinSpace
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,
start: O0,
stop: O1,
num: O2,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>( &self, start: O0, stop: O1, num: O2, scope: &mut Scope ) -> Result<Operation>
Builds the LinSpace
operation.
sourcepub fn build_instance(
&self,
start: Output,
stop: Output,
num: Output,
scope: &mut Scope
) -> Result<LinSpaceInst>
pub fn build_instance( &self, start: Output, stop: Output, num: Output, scope: &mut Scope ) -> Result<LinSpaceInst>
Builds a new instance of ‘LinSpace’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for LinSpace
impl Send for LinSpace
impl Sync for LinSpace
impl Unpin for LinSpace
impl UnwindSafe for LinSpace
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