endvroy commented on a change in pull request #15385: added doc for numpy
operators
URL: https://github.com/apache/incubator-mxnet/pull/15385#discussion_r298983919
##########
File path: python/mxnet/symbol/numpy/_symbol.py
##########
@@ -1555,4 +1556,112 @@ def sqrt(x, out=None, **kwargs):
return _unary_func_helper(x, _npi.sqrt, _np.sqrt, out=out, **kwargs)
+@set_module('mxnet.symbol.numpy')
+def floor(x, out=None, **kwargs):
+ r"""
+ Return the floor of the input, element-wise.
+ The floor of the scalar `x` is the largest integer `i`, such that
+ `i <= x`. It is often denoted as :math:`\lfloor x \rfloor`.
+
+ Parameters
+ ----------
+ x : _Symbol
+ Input data.
+ Does not support scalar.
+ out : _Symbol or None, optional
+ where : array_like, optional
Review comment:
fixed and moved to notes.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services