//clika-runtime/io.clika.runtime/times
times
[jvm]
operator fun Tensor.times(other: Tensor): Tensor
this * other, elementwise with broadcasting.
[jvm]
operator fun Tensor.times(scalar: Double): Tensor
operator fun Tensor.times(scalar: Int): Tensor
this * scalar, elementwise.
[jvm]
operator fun Double.times(t: Tensor): Tensor
scalar * t: the commutative mirror.