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