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