Binary#
- nabla.ops.binary.mul(arg0, arg1)[source]#
Element-wise multiplication of two arrays or array and scalar.
- nabla.ops.binary.sub(arg0, arg1)[source]#
Element-wise subtraction of two arrays or array and scalar.
- nabla.ops.binary.floordiv(arg0, arg1)[source]#
Element-wise floor division of two arrays or array and scalar.
Floor division is implemented as floor(a / b) which rounds towards negative infinity, matching Python’s // operator behavior.
- nabla.ops.binary.greater_equal(arg0, arg1)[source]#
Element-wise greater than or equal to operation.