dcada9b9c145d2e93d51790d234f0a2ddc7091df,python/mxnet/ndarray/numpy/_op.py,,less,#Any#Any#Any#,6684

Before Change


    >>> np.less(1, np.ones(1))
    array([False])
    
    return _ufunc_helper(x1, x2, _npi.less, _np.less, _npi.less_scalar, _npi.greater_scalar, out)


@set_module("mxnet.ndarray.numpy")
def greater_equal(x1, x2, out=None):

After Change


    array([False])
    
    if isinstance(x1, numeric_types) and isinstance(x2, numeric_types):
        return _np.less(x1, x2, out=out)
    return _api_internal.less(x1, x2, out)


@set_module("mxnet.ndarray.numpy")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: apache/incubator-mxnet
Commit Name: dcada9b9c145d2e93d51790d234f0a2ddc7091df
Time: 2020-04-17
Author: 59728467+AntiZpvoh@users.noreply.github.com
File Name: python/mxnet/ndarray/numpy/_op.py
Class Name:
Method Name: less


Project Name: geomstats/geomstats
Commit Name: 953cd54eff33bf1a77870044e4c9bfdf320e889d
Time: 2018-02-11
Author: ninamio78@gmail.com
File Name: geomstats/hypersphere.py
Class Name: Hypersphere
Method Name: belongs


Project Name: geomstats/geomstats
Commit Name: 39caa436b0249d79ebec385a08b891f0c3e4edbb
Time: 2018-02-11
Author: ninamio78@gmail.com
File Name: geomstats/hyperbolic_space.py
Class Name: HyperbolicSpace
Method Name: belongs