Struct tensorflow::eager::raw_ops::SparseSplit
source · pub struct SparseSplit { /* private fields */ }
Expand description
SparseSplit
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/SparseSplit
Implementations§
source§impl SparseSplit
impl SparseSplit
sourcepub fn num_split<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn num_split<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the num_split
attribute.
sourcepub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn target_device_name<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the `` attribute.
sourcepub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
split_dim: &T0,
indices: &T1,
values: &T2,
shape: &T3
) -> Result<[TensorHandle<'a>; 3]>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>( &self, ctx: &'a Context, split_dim: &T0, indices: &T1, values: &T2, shape: &T3 ) -> Result<[TensorHandle<'a>; 3]>
Execute sparse_split.
Trait Implementations§
source§impl Clone for SparseSplit
impl Clone for SparseSplit
source§fn clone(&self) -> SparseSplit
fn clone(&self) -> SparseSplit
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SparseSplit
impl Debug for SparseSplit
Auto Trait Implementations§
impl RefUnwindSafe for SparseSplit
impl Send for SparseSplit
impl Sync for SparseSplit
impl Unpin for SparseSplit
impl UnwindSafe for SparseSplit
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