Struct tensorflow::ops::SparseDenseCwiseDiv
source · [−]pub struct SparseDenseCwiseDiv { /* private fields */ }
Expand description
Builder for the SparseDenseCwiseDiv
operation.
Implementations
sourceimpl SparseDenseCwiseDiv
impl SparseDenseCwiseDiv
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>, O3: Into<Output>>(
&self,
sp_indices: O0,
sp_values: O1,
sp_shape: O2,
dense: O3,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
&self,
sp_indices: O0,
sp_values: O1,
sp_shape: O2,
dense: O3,
scope: &mut Scope
) -> Result<Operation>
Builds the SparseDenseCwiseDiv
operation.
sourcepub fn build_instance(
&self,
sp_indices: Output,
sp_values: Output,
sp_shape: Output,
dense: Output,
scope: &mut Scope
) -> Result<SparseDenseCwiseDivInst>
pub fn build_instance(
&self,
sp_indices: Output,
sp_values: Output,
sp_shape: Output,
dense: Output,
scope: &mut Scope
) -> Result<SparseDenseCwiseDivInst>
Builds a new instance of ‘SparseDenseCwiseDiv’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations
sourceimpl Debug for SparseDenseCwiseDiv
impl Debug for SparseDenseCwiseDiv
sourceimpl Default for SparseDenseCwiseDiv
impl Default for SparseDenseCwiseDiv
sourcefn default() -> SparseDenseCwiseDiv
fn default() -> SparseDenseCwiseDiv
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for SparseDenseCwiseDiv
impl Send for SparseDenseCwiseDiv
impl Sync for SparseDenseCwiseDiv
impl Unpin for SparseDenseCwiseDiv
impl UnwindSafe for SparseDenseCwiseDiv
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more