Struct tensorflow::ops::SparseDenseCwiseAdd
source · pub struct SparseDenseCwiseAdd { /* private fields */ }
Expand description
Builder for the SparseDenseCwiseAdd
operation.
Implementations§
source§impl 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§
source§impl Debug for SparseDenseCwiseAdd
impl Debug for SparseDenseCwiseAdd
source§impl Default for SparseDenseCwiseAdd
impl Default for SparseDenseCwiseAdd
source§fn 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§
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