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)

S
swtkiwi 已提交
8 9 10



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

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

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

返回类型:变量(Variable)

**代码示例**:

.. code-block:: python

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


H
Hao Wang 已提交
39 40