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