greater_equal_cn.rst 850 字节
Newer Older
H
Hao Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
.. _cn_api_fluid_layers_greater_equal:

greater_equal
-------------------------------

.. py:function:: paddle.fluid.layers.greater_equal(x, y, cond=None)

该层逐元素地返回 :math:`x >= y` 的逻辑值,和重载算子 `>=` 相同。

参数:
    - **x** (Variable) - *greater_equal* 的第一个操作数
    - **y** (Variable) - *greater_equal* 的第二个操作数
    - **cond** (Variable|None) - 可选的输出变量,存储 *greater_equal* 的结果

返回:存储 *greater_equal* 的输出的张量变量。

返回类型:变量(Variable)

**代码示例**:

.. code-block:: python

     import paddle.fluid as fluid
Z
zq19 已提交
24 25
     label = fluid.layers.data(name='label', shape=[1], dtype='int64')
     limit = fluid.layers.fill_constant(shape=[1], value=1, dtype='int64')
H
Hao Wang 已提交
26 27 28 29
     out = fluid.layers.greater_equal(x=label, y=limit)