Overview
Multiplies one object by another
{% x.mul(y) = x \times y %}
let x = tf.variable(tf.scalar(2));
x.mul(tf.scalar(2));
Try it!
let x = tf.variable(tf.scalar(2));
x.mul(tf.scalar(2));
Try it!