pub fn block_lstmv2<'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>>(
    ctx: &'a Context,
    seq_len_max: &T0,
    x: &T1,
    cs_prev: &T2,
    h_prev: &T3,
    w: &T4,
    wci: &T5,
    wcf: &T6,
    wco: &T7,
    b: &T8
) -> Result<[TensorHandle<'a>; 7]>
Expand description

Shorthand for BlockLSTMV2::new().call(&ctx, &seq_len_max, &x, &cs_prev, &h_prev, &w, &wci, &wcf, &wco, &b).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/BlockLSTMV2