Struct tensorflow::eager::raw_ops::GRUBlockCellGrad
source · pub struct GRUBlockCellGrad { /* private fields */ }
Expand description
GRUBlockCellGrad
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/GRUBlockCellGrad
Implementations§
source§impl GRUBlockCellGrad
impl GRUBlockCellGrad
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>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>, T6: ToTensorHandle<'a>, T7: ToTensorHandle<'a>, T8: ToTensorHandle<'a>, T9: ToTensorHandle<'a>>(
&self,
ctx: &'a Context,
x: &T0,
h_prev: &T1,
w_ru: &T2,
w_c: &T3,
b_ru: &T4,
b_c: &T5,
r: &T6,
u: &T7,
c: &T8,
d_h: &T9
) -> Result<[TensorHandle<'a>; 4]>
pub fn call<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>, T6: ToTensorHandle<'a>, T7: ToTensorHandle<'a>, T8: ToTensorHandle<'a>, T9: ToTensorHandle<'a>>( &self, ctx: &'a Context, x: &T0, h_prev: &T1, w_ru: &T2, w_c: &T3, b_ru: &T4, b_c: &T5, r: &T6, u: &T7, c: &T8, d_h: &T9 ) -> Result<[TensorHandle<'a>; 4]>
Execute grublock_cell_grad.
Trait Implementations§
source§impl Clone for GRUBlockCellGrad
impl Clone for GRUBlockCellGrad
source§fn clone(&self) -> GRUBlockCellGrad
fn clone(&self) -> GRUBlockCellGrad
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 GRUBlockCellGrad
impl Debug for GRUBlockCellGrad
Auto Trait Implementations§
impl RefUnwindSafe for GRUBlockCellGrad
impl Send for GRUBlockCellGrad
impl Sync for GRUBlockCellGrad
impl Unpin for GRUBlockCellGrad
impl UnwindSafe for GRUBlockCellGrad
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