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