logical_not_cn.rst 1.5 KB
Newer Older
H
Hao Wang 已提交
1 2 3 4 5
.. _cn_api_fluid_layers_logical_not:

logical_not
-------------------------------

6
.. py:function:: paddle.fluid.layers.logical_not(x, out=None, name=None)
H
Hao Wang 已提交
7

W
Wilber 已提交
8
该OP逐元素的对 ``X`` LoDTensor/Tensor进行逻辑非运算
H
Hao Wang 已提交
9 10 11 12 13

.. math::
        Out = !X

参数:
W
Wilber 已提交
14 15 16
        - **x** (Variable)- 逻辑非运算的输入,是一个多维的LoDTensor/Tensor,数据类型只能是bool。
        - **out** (Variable,可选)- 指定算子输出结果的LoDTensor/Tensor,可以是程序中已经创建的任何Variable。默认值为None,此时将创建新的Variable来保存输出结果。
        - **name** (str,可选)- 该参数供开发人员打印调试信息时使用,具体用法参见 :ref:`api_guide_Name` ,默认值为None。
H
Hao Wang 已提交
17

W
Wilber 已提交
18
返回:与 ``x`` 维度相同,数据类型相同的LoDTensor/Tensor。
H
Hao Wang 已提交
19

W
Wilber 已提交
20
返回类型:Variable
H
Hao Wang 已提交
21 22 23 24 25 26

**代码示例:**

.. code-block:: python

    import paddle.fluid as fluid
W
Wilber 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
    import numpy as np

    # Graph organizing
    x = fluid.layers.data(name='x', shape=[2], dtype='bool')
    res = fluid.layers.logical_not(x)
    # The comment lists another availble method.
    # res = fluid.layers.fill_constant(shape=[2], dtype='bool', value=0)
    # fluid.layers.logical_not(x, out=res)

    # Create an executor using CPU as an example
    exe = fluid.Executor(fluid.CPUPlace())
    exe.run(fluid.default_startup_program())

    # Execute
    x_i = np.array([[1, 0]]).astype(np.bool)
    res_val, = exe.run(fluid.default_main_program(), feed={'x':x_i}, fetch_list=[res])
    print(res_val) # [[False, True]]
H
Hao Wang 已提交
44