//clika-runtime/io.clika.runtime/div
div
[jvm]
operator fun Tensor.div(other: Tensor): Tensor
this / other, elementwise with broadcasting (true division).
[jvm]
operator fun Tensor.div(scalar: Double): Tensor
operator fun Tensor.div(scalar: Int): Tensor
this / scalar, elementwise.
[jvm]
operator fun Double.div(t: Tensor): Tensor
scalar / t, elementwise: the scalar divided BY each element.