pub fn stateless_truncated_normal_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>>(
    ctx: &'a Context,
    shape: &T0,
    key: &T1,
    counter: &T2,
    alg: &T3
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for StatelessTruncatedNormalV2::new().call(&ctx, &shape, &key, &counter, &alg).

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