blob: 792d4b4471c78cee98c8870e275402886eb9355a [file] [log] [blame]
``mx.nd.broadcast.lesser``
====================================================
Description
----------------------
Returns the result of element-wise **lesser than** (<) comparison operation with broadcasting.
**Example**::
x = [[ 1., 1., 1.],
[ 1., 1., 1.]]
y = [[ 0.],
[ 1.]]
broadcast_lesser(x, y) = [[ 0., 0., 0.],
[ 0., 0., 0.]]
Arguments
------------------
+----------------------------------------+------------------------------------------------------------+
| Argument | Description |
+========================================+============================================================+
| ``lhs`` | NDArray-or-Symbol. |
| | |
| | First input to the function |
+----------------------------------------+------------------------------------------------------------+
| ``rhs`` | NDArray-or-Symbol. |
| | |
| | Second input to the function |
+----------------------------------------+------------------------------------------------------------+
Value
----------
``out`` The result mx.ndarray
Link to Source Code: http://github.com/apache/incubator-mxnet/blob/1.6.0/src/operator/tensor/elemwise_binary_broadcast_op_logic.cc#L118