提交 0251a1b9 编写于 作者: W wanghaoshuang

Fix math.

上级 67aaffd1
...@@ -11,28 +11,28 @@ elementwise_add ...@@ -11,28 +11,28 @@ elementwise_add
对两个 :code:`Tensor` 逐元素相加,对应的数学操作符为 :code:`+` 对两个 :code:`Tensor` 逐元素相加,对应的数学操作符为 :code:`+`
API Reference 请参考 api_fluid_math_elementwise_add_ API Reference 请参考 :ref:`api_fluid_math_elementwise_add`
elementwise_sub elementwise_sub
------------------ ------------------
对两个 :code:`Tensor` 逐元素相减,对应数学操作符 :code:`-` 对两个 :code:`Tensor` 逐元素相减,对应数学操作符 :code:`-`
API Reference 请参考 api_fluid_math_elementwise_sub_ API Reference 请参考 :ref:`api_fluid_math_elementwise_sub`
elementwise_mul elementwise_mul
------------------ ------------------
对两个 :code:`Tensor` 逐元素相乘, 对应数学操作符 :code:`*` 对两个 :code:`Tensor` 逐元素相乘, 对应数学操作符 :code:`*`
API Reference 请参考 api_fluid_math_elementwise_mul_ API Reference 请参考 :ref:`api_fluid_math_elementwise_mul`
elementwise_div elementwise_div
------------------ ------------------
对两个 :code:`Tensor` 逐元素相除, 对应数学操作符 :code:`/` 或 :code:`//` 对两个 :code:`Tensor` 逐元素相除, 对应数学操作符 :code:`/` 或 :code:`//`
API Reference 请参考 api_fluid_math_elementwise_div_ API Reference 请参考 :ref:`api_fluid_math_elementwise_div`
elementwise_pow elementwise_pow
...@@ -40,146 +40,165 @@ elementwise_pow ...@@ -40,146 +40,165 @@ elementwise_pow
对两个 :code:`Tensor` 逐元素做次幂操作, 对应数学操作符 :code:`**` 对两个 :code:`Tensor` 逐元素做次幂操作, 对应数学操作符 :code:`**`
API Reference 请参考 api_fluid_math_elementwise_pow_ API Reference 请参考 :ref:`api_fluid_math_elementwise_pow`
equal equal
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否相等, 对应数学操作符 :code:`==` 对两个 :code:`Tensor` 逐元素判断是否相等, 对应数学操作符 :code:`==`
API Reference 请参考 api_fluid_math_equal_ API Reference 请参考 :ref:`api_fluid_math_equal`
not_equal not_equal
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否不等, 对应数学操作符 :code:`!=` 对两个 :code:`Tensor` 逐元素判断是否不等, 对应数学操作符 :code:`!=`
API Reference 请参考 api_fluid_math_elementwise_not_equal_ API Reference 请参考 :ref:`api_fluid_math_elementwise_not_equal`
less_than less_than
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否满足小于关系, 对应数学操作符 :code:`<` 对两个 :code:`Tensor` 逐元素判断是否满足小于关系, 对应数学操作符 :code:`<`
API Reference 请参考 api_fluid_math_less_than_ API Reference 请参考 :ref:`api_fluid_math_less_than`
less_equal less_equal
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否满足小于或等于关系, 对应数学操作符 :code:`<=` 对两个 :code:`Tensor` 逐元素判断是否满足小于或等于关系, 对应数学操作符 :code:`<=`
API Reference 请参考 api_fluid_math_less_equal_ API Reference 请参考 :ref:`api_fluid_math_less_equal`
greater_than greater_than
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否满足大于关系, 对应数学操作符 :code:`>` 对两个 :code:`Tensor` 逐元素判断是否满足大于关系, 对应数学操作符 :code:`>`
API Reference 请参考 api_fluid_math_greater_than_ API Reference 请参考 :ref:`api_fluid_math_greater_than`
greater_equal greater_equal
------------------ ------------------
对两个 :code:`Tensor` 逐元素判断是否满足大于或等于关系, 对应数学操作符 :code:`>=` 对两个 :code:`Tensor` 逐元素判断是否满足大于或等于关系, 对应数学操作符 :code:`>=`
API Reference 请参考 api_fluid_math_greater_equal_ API Reference 请参考 :ref:`api_fluid_math_greater_equal`
sum
------------------
对两个 :code:`Tensor` 逐元素相加。
API Reference 请参考 :ref:`api_fluid_math_sum`
min
------------------
对两个 :code:`Tensor` 逐元素进行 :code:`min(x, y)` 操作。
API Reference 请参考 :ref:`api_fluid_math_min`
max
------------------
对两个 :code:`Tensor` 逐元素进行 :code:`max(x, y)` 操作。
API Reference 请参考 :ref:`api_fluid_math_max`
matmul
------------------
对两个 :code:`Tensor` 进行矩阵乘操作。
API Reference 请参考 :ref:`api_fluid_math_matmul`
exp exp
------------------ ------------------
对输入 :code:`Tensor` 逐元素做 :code:`exp` 操作。 对输入 :code:`Tensor` 逐元素做 :code:`exp` 操作。
API Reference 请参考 api_fluid_math_exp_ API Reference 请参考 :ref:`api_fluid_math_exp`
tanh tanh
------------------ ------------------
对输入 :code:`Tensor` 逐元素取正切。 对输入 :code:`Tensor` 逐元素取正切。
API Reference 请参考 api_fluid_math_tanh_ API Reference 请参考 :ref:`api_fluid_math_tanh`
sqrt sqrt
------------------ ------------------
对输入 :code:`Tensor` 逐元素取平方根。 对输入 :code:`Tensor` 逐元素取平方根。
API Reference 请参考 api_fluid_math_sqrt_ API Reference 请参考 :ref:`api_fluid_math_sqrt`
abs abs
------------------ ------------------
对输入 :code:`Tensor` 逐元素取绝对值。 对输入 :code:`Tensor` 逐元素取绝对值。
API Reference 请参考 api_fluid_math_abs_ API Reference 请参考 :ref:`api_fluid_math_abs`
ceil ceil
------------------ ------------------
对输入 :code:`Tensor` 逐元素向上取整。 对输入 :code:`Tensor` 逐元素向上取整。
API Reference 请参考 api_fluid_math_ceil_ API Reference 请参考 :ref:`api_fluid_math_ceil`
floor floor
------------------ ------------------
对输入 :code:`Tensor` 逐元素向下取整。 对输入 :code:`Tensor` 逐元素向下取整。
API Reference 请参考 api_fluid_math_floor_ API Reference 请参考 :ref:`api_fluid_math_floor`
sin sin
------------------ ------------------
对输入 :code:`Tensor` 逐元素取正玄。 对输入 :code:`Tensor` 逐元素取正玄。
API Reference 请参考 api_fluid_math_sin_ API Reference 请参考 :ref:`api_fluid_math_sin`
cos cos
------------------ ------------------
对输入 :code:`Tensor` 逐元素取余玄。 对输入 :code:`Tensor` 逐元素取余玄。
API Reference 请参考 api_fluid_math_cos_ API Reference 请参考 :ref:`api_fluid_math_cos`
round round
------------------ ------------------
对输入 :code:`Tensor` 逐元素四舍五入取整。 对输入 :code:`Tensor` 逐元素四舍五入取整。
API Reference 请参考 api_fluid_math_round_ API Reference 请参考 :ref:`api_fluid_math_round`
square square
------------------ ------------------
对输入 :code:`Tensor` 逐元素取平方。 对输入 :code:`Tensor` 逐元素取平方。
API Reference 请参考 api_fluid_math_square_ API Reference 请参考 :ref:`api_fluid_math_square`
reciprocal reciprocal
------------------ ------------------
对输入 :code:`Tensor` 逐元素取倒数。 对输入 :code:`Tensor` 逐元素取倒数。
API Reference 请参考 api_fluid_math_reciprocal_ API Reference 请参考 :ref:`api_fluid_math_reciprocal`
.. _api_fluid_math_elementwise_add: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#elementwise-add
.. _api_fluid_math_elementwise_sub: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#elementwise-sub reduce
.. _api_fluid_math_elementwise_mul: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#elementwise-mul ------------------
.. _api_fluid_math_elementwise_div: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#elementwise-div
.. _api_fluid_math_elementwise_pow: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#elementwise-pow 对输入 :code:`Tensor` 在指定的若干轴上做reduce操作,包括:min, max, sum, mean, product
.. _api_fluid_math_equal: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#equal
.. _api_fluid_math_not_equal: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#not-equal API Reference 请参考:
.. _api_fluid_math_less_than: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#less-than :ref:`api_fluid_math_reduce_min`
.. _api_fluid_math_less_equal: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#less-equal :ref:`api_fluid_math_reduce_max`
.. _api_fluid_math_greater_than: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#greater-than :ref:`api_fluid_math_reduce_sum`
.. _api_fluid_math_greater_equal: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#greater-equal :ref:`api_fluid_math_reduce_mean`
.. _api_fluid_math_exp: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#exp :ref:`api_fluid_math_reduce_prod`
.. _api_fluid_math_tanh: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#tanh
.. _api_fluid_math_sqrt: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#sqrt
.. _api_fluid_math_abs: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#abs
.. _api_fluid_math_ceil: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#ceil
.. _api_fluid_math_floor: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#floor
.. _api_fluid_math_sin: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#sin
.. _api_fluid_math_cos: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#cos
.. _api_fluid_math_round: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#round
.. _api_fluid_math_square: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#square
.. _api_fluid_math_reciprocal: http://www.paddlepaddle.org/documentation/api/zh/1.0/layers.html#reciprocal
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册