提交 5ca56cad 编写于 作者: S sneaxiy

test=develop

上级 3fe2def1
...@@ -896,9 +896,10 @@ def array_to_lod_tensor(x, table): ...@@ -896,9 +896,10 @@ def array_to_lod_tensor(x, table):
def increment(x, value=1.0, in_place=True): def increment(x, value=1.0, in_place=True):
""" """
This function performs an operation that increments each value in the This function performs an operation that increments the value in the
input :math:`x` by an amount: :math:`value` as mentioned in the input input :math:`x` by an amount: :math:`value` as mentioned in the input
parameter. This operation is performed in-place by default. parameter. This operation is performed in-place by default. Notice that
the number of elements in :math:`x` must be equal to 1.
Args: Args:
x (Variable|list): The tensor that has the input values. x (Variable|list): The tensor that has the input values.
...@@ -911,7 +912,8 @@ def increment(x, value=1.0, in_place=True): ...@@ -911,7 +912,8 @@ def increment(x, value=1.0, in_place=True):
Examples: Examples:
.. code-block:: python .. code-block:: python
data = fluid.layers.data(name='data', shape=[32, 32], dtype='float32') data = fluid.layers.data(name='data', shape=[1], dtype='float32',
append_batch_size=False)
data = fluid.layers.increment(x=data, value=3.0, in_place=True) data = fluid.layers.increment(x=data, value=3.0, in_place=True)
""" """
helper = LayerHelper("increment", **locals()) helper = LayerHelper("increment", **locals())
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册