pub struct LSTMBlockCellGrad { /* private fields */ }
Expand description
Builder for the LSTMBlockCellGrad
operation.
Implementations§
Source§impl LSTMBlockCellGrad
impl LSTMBlockCellGrad
Sourcepub fn use_peephole<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn use_peephole<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the use_peephole
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>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>, O12: Into<Output>, O13: Into<Output>, O14: Into<Output>, O15: Into<Output>>(
&self,
x: O0,
cs_prev: O1,
h_prev: O2,
w: O3,
wci: O4,
wcf: O5,
wco: O6,
b: O7,
i: O8,
cs: O9,
f: O10,
o: O11,
ci: O12,
co: O13,
cs_grad: O14,
h_grad: O15,
scope: &mut Scope,
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>, O12: Into<Output>, O13: Into<Output>, O14: Into<Output>, O15: Into<Output>>( &self, x: O0, cs_prev: O1, h_prev: O2, w: O3, wci: O4, wcf: O5, wco: O6, b: O7, i: O8, cs: O9, f: O10, o: O11, ci: O12, co: O13, cs_grad: O14, h_grad: O15, scope: &mut Scope, ) -> Result<Operation>
Builds the LSTMBlockCellGrad
operation.
Trait Implementations§
Source§impl Debug for LSTMBlockCellGrad
impl Debug for LSTMBlockCellGrad
Source§impl Default for LSTMBlockCellGrad
impl Default for LSTMBlockCellGrad
Source§fn default() -> LSTMBlockCellGrad
fn default() -> LSTMBlockCellGrad
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LSTMBlockCellGrad
impl RefUnwindSafe for LSTMBlockCellGrad
impl Send for LSTMBlockCellGrad
impl Sync for LSTMBlockCellGrad
impl Unpin for LSTMBlockCellGrad
impl UnwindSafe for LSTMBlockCellGrad
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