提交 b2dc54c0 编写于 作者: D dongdaxiang

add distributed.fleet to gen_doc

上级 c98bfff1
==============
paddle.complex
==============
.. toctree::
:maxdepth: 1
===========
distributed
===========
.. toctree::
:maxdepth: 1
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_LambdaDecay:
LambdaDecay
-----------
.. autoclass:: paddle.fluid.dygraph.LambdaDecay
:members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_LinearLrWarmup:
LinearLrWarmup
--------------
.. autoclass:: paddle.fluid.dygraph.LinearLrWarmup
:members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_MultiStepDecay:
MultiStepDecay
--------------
.. autoclass:: paddle.fluid.dygraph.MultiStepDecay
:members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_ProgramTranslator:
ProgramTranslator
-----------------
.. autoclass:: paddle.fluid.dygraph.ProgramTranslator
:members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_StepDecay:
StepDecay
---------
.. autoclass:: paddle.fluid.dygraph.StepDecay
:members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_dygraph_declarative:
declarative
-----------
.. autofunction:: paddle.fluid.dygraph.declarative
:noindex:
=================
distributed.fleet
=================
.. toctree::
:maxdepth: 1
fleet/DistributedStrategy.rst
fleet/UtilBase.rst
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fleet_DistributedStrategy:
DistributedStrategy
-------------------
.. autoclass:: paddle.fleet.DistributedStrategy
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fleet_UtilBase:
UtilBase
--------
.. autoclass:: paddle.fleet.UtilBase
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_ComplexVariable:
ComplexVariable
---------------
.. autoclass:: paddle.fluid.ComplexVariable
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_disable_imperative:
disable_imperative
------------------
.. autofunction:: paddle.fluid.disable_imperative
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_enable_imperative:
enable_imperative
-----------------
.. autofunction:: paddle.fluid.enable_imperative
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_ComplexVariable:
ComplexVariable
---------------
.. autoclass:: paddle.fluid.framework.ComplexVariable
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_cpu_places:
cpu_places
----------
.. autofunction:: paddle.fluid.framework.cpu_places
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_cuda_pinned_places:
cuda_pinned_places
------------------
.. autofunction:: paddle.fluid.framework.cuda_pinned_places
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_cuda_places:
cuda_places
-----------
.. autofunction:: paddle.fluid.framework.cuda_places
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_device_guard:
device_guard
------------
.. autofunction:: paddle.fluid.framework.device_guard
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_get_flags:
get_flags
---------
.. autofunction:: paddle.fluid.framework.get_flags
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_in_dygraph_mode:
in_dygraph_mode
---------------
.. autofunction:: paddle.fluid.framework.in_dygraph_mode
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_is_compiled_with_cuda:
is_compiled_with_cuda
---------------------
.. autofunction:: paddle.fluid.framework.is_compiled_with_cuda
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_load_op_library:
load_op_library
---------------
.. autofunction:: paddle.fluid.framework.load_op_library
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_require_version:
require_version
---------------
.. autofunction:: paddle.fluid.framework.require_version
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_framework_set_flags:
set_flags
---------
.. autofunction:: paddle.fluid.framework.set_flags
:noindex:
......@@ -22,6 +22,7 @@ import paddle.fluid as fluid
import paddle.tensor as tensor
import paddle.nn as nn
import paddle.complex as complex
import paddle.distributed as distributed
#import paddle.framework as framework
def parse_arg():
......
......@@ -9,6 +9,15 @@ done
python gen_doc.py --module_name "" --module_prefix "" --output fluid --output_name fluid --to_multiple_files True
python gen_module_index.py fluid fluid
for module in fleet
do
python gen_doc.py --module_name ${module} --module_prefix ${module} --output ${module} --output_name fleet --to_multiple_files True
python gen_module_index.py ${module} distributed.${module}
done
python gen_doc.py --module_name "" --module_prefix "" --output distributed --output_name distributed --to_multiple_files True
python gen_module_index.py distributed distributed
# tensor
for module in math random stat linalg search
do
......
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_initializer_set_global_initializer:
set_global_initializer
----------------------
.. autofunction:: paddle.fluid.initializer.set_global_initializer
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_io_default_collate_fn:
default_collate_fn
------------------
.. autofunction:: paddle.fluid.io.default_collate_fn
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_Assert:
Assert
------
.. autofunction:: paddle.fluid.layers.Assert
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_cosh:
cosh
----
.. autofunction:: paddle.fluid.layers.cosh
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_mish:
mish
----
.. autofunction:: paddle.fluid.layers.mish
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_resize_linear:
resize_linear
-------------
.. autofunction:: paddle.fluid.layers.resize_linear
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_sinh:
sinh
----
.. autofunction:: paddle.fluid.layers.sinh
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_fluid_layers_unbind:
unbind
------
.. autofunction:: paddle.fluid.layers.unbind
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_InstanceNorm:
InstanceNorm
------------
.. autoclass:: paddle.nn.InstanceNorm
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_Pad2D:
Pad2D
-----
.. autoclass:: paddle.nn.Pad2D
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_UpSample:
UpSample
--------
.. autoclass:: paddle.nn.UpSample
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_loss_BCELoss:
BCELoss
-------
.. autoclass:: paddle.nn.loss.BCELoss
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_loss_CrossEntropyLoss:
CrossEntropyLoss
----------------
.. autoclass:: paddle.nn.loss.CrossEntropyLoss
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_nn_loss_MSELoss:
MSELoss
-------
.. autoclass:: paddle.nn.loss.MSELoss
:members:
:inherited-members:
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_bmm:
bmm
---
.. autofunction:: paddle.tensor.linalg.bmm
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_cholesky:
cholesky
--------
.. autofunction:: paddle.tensor.linalg.cholesky
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_cross:
cross
-----
.. autofunction:: paddle.tensor.linalg.cross
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_dot:
dot
---
.. autofunction:: paddle.tensor.linalg.dot
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_histogram:
histogram
---------
.. autofunction:: paddle.tensor.linalg.histogram
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_matmul:
matmul
------
.. autofunction:: paddle.tensor.linalg.matmul
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_norm:
norm
----
.. autofunction:: paddle.tensor.linalg.norm
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_t:
t
-
.. autofunction:: paddle.tensor.linalg.t
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_linalg_transpose:
transpose
---------
.. autofunction:: paddle.tensor.linalg.transpose
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_abs:
abs
---
.. autofunction:: paddle.tensor.math.abs
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_acos:
acos
----
.. autofunction:: paddle.tensor.math.acos
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_addcmul:
addcmul
-------
.. autofunction:: paddle.tensor.math.addcmul
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_addmm:
addmm
-----
.. autofunction:: paddle.tensor.math.addmm
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_asin:
asin
----
.. autofunction:: paddle.tensor.math.asin
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_ceil:
ceil
----
.. autofunction:: paddle.tensor.math.ceil
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_clamp:
clamp
-----
.. autofunction:: paddle.tensor.math.clamp
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_cos:
cos
---
.. autofunction:: paddle.tensor.math.cos
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_cosh:
cosh
----
.. autofunction:: paddle.tensor.math.cosh
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_cumsum:
cumsum
------
.. autofunction:: paddle.tensor.math.cumsum
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_add:
elementwise_add
---------------
.. autofunction:: paddle.tensor.math.elementwise_add
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_div:
elementwise_div
---------------
.. autofunction:: paddle.tensor.math.elementwise_div
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_floordiv:
elementwise_floordiv
--------------------
.. autofunction:: paddle.tensor.math.elementwise_floordiv
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_max:
elementwise_max
---------------
.. autofunction:: paddle.tensor.math.elementwise_max
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_min:
elementwise_min
---------------
.. autofunction:: paddle.tensor.math.elementwise_min
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_mod:
elementwise_mod
---------------
.. autofunction:: paddle.tensor.math.elementwise_mod
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_pow:
elementwise_pow
---------------
.. autofunction:: paddle.tensor.math.elementwise_pow
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_elementwise_sub:
elementwise_sub
---------------
.. autofunction:: paddle.tensor.math.elementwise_sub
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_erf:
erf
---
.. autofunction:: paddle.tensor.math.erf
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_exp:
exp
---
.. autofunction:: paddle.tensor.math.exp
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_floor:
floor
-----
.. autofunction:: paddle.tensor.math.floor
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_increment:
increment
---------
.. autofunction:: paddle.tensor.math.increment
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_inverse:
inverse
-------
.. autofunction:: paddle.tensor.math.inverse
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_kron:
kron
----
.. autofunction:: paddle.tensor.math.kron
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_log:
log
---
.. autofunction:: paddle.tensor.math.log
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_log1p:
log1p
-----
.. autofunction:: paddle.tensor.math.log1p
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_logsumexp:
logsumexp
---------
.. autofunction:: paddle.tensor.math.logsumexp
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_max:
max
---
.. autofunction:: paddle.tensor.math.max
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_min:
min
---
.. autofunction:: paddle.tensor.math.min
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_multiplex:
multiplex
---------
.. autofunction:: paddle.tensor.math.multiplex
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_multiply:
multiply
--------
.. autofunction:: paddle.tensor.math.multiply
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_reciprocal:
reciprocal
----------
.. autofunction:: paddle.tensor.math.reciprocal
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_reduce_max:
reduce_max
----------
.. autofunction:: paddle.tensor.math.reduce_max
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_reduce_min:
reduce_min
----------
.. autofunction:: paddle.tensor.math.reduce_min
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_reduce_prod:
reduce_prod
-----------
.. autofunction:: paddle.tensor.math.reduce_prod
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_reduce_sum:
reduce_sum
----------
.. autofunction:: paddle.tensor.math.reduce_sum
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_round:
round
-----
.. autofunction:: paddle.tensor.math.round
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_rsqrt:
rsqrt
-----
.. autofunction:: paddle.tensor.math.rsqrt
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_scale:
scale
-----
.. autofunction:: paddle.tensor.math.scale
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_sign:
sign
----
.. autofunction:: paddle.tensor.math.sign
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_sinh:
sinh
----
.. autofunction:: paddle.tensor.math.sinh
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_square:
square
------
.. autofunction:: paddle.tensor.math.square
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_stanh:
stanh
-----
.. autofunction:: paddle.tensor.math.stanh
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_sums:
sums
----
.. autofunction:: paddle.tensor.math.sums
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_math_trace:
trace
-----
.. autofunction:: paddle.tensor.math.trace
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_random_shuffle:
shuffle
-------
.. autofunction:: paddle.tensor.random.shuffle
:noindex:
======
search
======
.. toctree::
:maxdepth: 1
search/argmax.rst
search/argmin.rst
search/argsort.rst
search/has_inf.rst
search/has_nan.rst
search/index_sample.rst
search/index_select.rst
search/nonzero.rst
search/sort.rst
search/topk.rst
search/where.rst
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_search_argmax:
argmax
------
.. autofunction:: paddle.tensor.search.argmax
:noindex:
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}`
!DO NOT EDIT THIS FILE MANUALLY!
.. _api_tensor_search_argmin:
argmin
------
.. autofunction:: paddle.tensor.search.argmin
:noindex:
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册