equal_cn.rst 1.3 KB
Newer Older
H
Hao Wang 已提交
1 2 3 4 5 6 7
.. _cn_api_fluid_layers_equal:

equal
-------------------------------

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

8
该OP返回 :math:`x==y` 逐元素比较x和y是否相等,x和y的维度应该相同。
H
Hao Wang 已提交
9 10

参数:
11 12 13
    - **x** (Variable) - 输入Tensor,支持的数据类型包括 float32, float64,int32, int64。
    - **y** (Variable) - 输入Tensor,支持的数据类型包括 float32, float64, int32, int64。
    - **cond** (Variable,可选) - 逐元素比较的结果Tensor,可以是程序中已经创建的任何Variable。默认值为None,此时将创建新的Variable来保存输出结果。
H
Hao Wang 已提交
14

15
返回:输出结果的Tensor,输出Tensor的shape和输入一致,Tensor数据类型为bool。
H
Hao Wang 已提交
16 17 18 19 20 21 22 23

返回类型:变量(Variable)

**代码示例**:

.. code-block:: python

    import paddle.fluid as fluid
24 25
    import numpy as np
    
W
wangchaochaohu 已提交
26
    out_cond =fluid.data(name="input1", shape=[2], dtype='bool')
27 28 29 30 31
    label = fluid.layers.assign(np.array([3, 3], dtype="int32"))
    limit = fluid.layers.assign(np.array([3, 2], dtype="int32"))
    label_cond = fluid.layers.assign(np.array([1, 2], dtype="int32"))
    
    out1 = fluid.layers.equal(x=label,y=limit) #out1=[True, False]
W
wangchaochaohu 已提交
32
    out2 = fluid.layers.equal(x=label_cond,y=limit, cond=out_cond) #out2=[False, True] out_cond=[False, True]
33
    
H
Hao Wang 已提交
34 35 36 37