mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Update docs feature classifications (#39966)
Summary: Update the following feature classifications in docs to align with the changes: 1. [High Level Autograd APIs](https://pytorch.org/docs/stable/autograd.html#functional-higher-level-api): Beta (was experimental) 2. [Eager Mode Quantization](https://pytorch.org/docs/stable/quantization.html): Beta (was experimental) 3. [Named Tensors](https://pytorch.org/docs/stable/named_tensor.html): Prototype (was experimental) 4. [TorchScript/RPC](https://pytorch.org/docs/stable/rpc.html#rpc): Prototype (was experimental) 5. [Channels Last Memory Layout](https://pytorch.org/docs/stable/tensor_attributes.html#torch-memory-format): Beta (was experimental) 6. [Custom C++ Classes](https://pytorch.org/docs/stable/cpp_index.html): Beta (was experimental) 7. [Torch.Sparse](https://pytorch.org/docs/stable/sparse.html): Beta (was experimental) Pull Request resolved: https://github.com/pytorch/pytorch/pull/39966 Differential Revision: D22213217 Pulled By: jlin27 fbshipit-source-id: dc49337cbc7026ed8dcac506fc60029dc3add854
This commit is contained in:
parent
72f2c479e3
commit
2e6e8d557c
6 changed files with 13 additions and 6 deletions
|
|
@ -17,7 +17,7 @@ Functional higher level API
|
|||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
.. warning::
|
||||
This API is experimental. Even though the function signatures are very unlikely to change, major
|
||||
This API is in beta. Even though the function signatures are very unlikely to change, major
|
||||
improvements to performances are planned before we consider this stable.
|
||||
|
||||
This section contains the higher level API for the autograd that builds on the basic API above
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ Names can also be used to rearrange dimensions, for example, to support
|
|||
"broadcasting by name" rather than "broadcasting by position".
|
||||
|
||||
.. warning::
|
||||
The named tensor API is experimental and subject to change.
|
||||
The named tensor API is a prototype feature and subject to change.
|
||||
|
||||
Creating named tensors
|
||||
----------------------
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
Quantization
|
||||
============
|
||||
|
||||
.. warning ::
|
||||
Quantization is in beta and subject to change.
|
||||
|
||||
Introduction to Quantization
|
||||
----------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -92,11 +92,12 @@ applications can always explicitly move the input tensors to CPU on the caller
|
|||
and move it to the desired devices on the callee if necessary.
|
||||
|
||||
.. warning::
|
||||
TorchScript support in RPC is experimental and subject to change. Since
|
||||
TorchScript support in RPC is a prototype feature and subject to change. Since
|
||||
v1.5.0, ``torch.distributed.rpc`` supports calling TorchScript functions as
|
||||
RPC target functions, and this will help improve parallelism on the callee
|
||||
side as executing TorchScript functions does not require GIL.
|
||||
|
||||
|
||||
.. autofunction:: rpc_sync
|
||||
.. autofunction:: rpc_async
|
||||
.. autofunction:: remote
|
||||
|
|
@ -110,7 +111,7 @@ The RPC package also provides decorators which allow applications to specify
|
|||
how a given function should be treated on the callee side.
|
||||
|
||||
.. warning::
|
||||
The ``rpc.functions`` package is experimental and subject to change.
|
||||
The ``rpc.functions`` package is a prototype feature and subject to change.
|
||||
|
||||
.. autofunction:: torch.distributed.rpc.functions.async_execution
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ torch.sparse
|
|||
|
||||
.. warning::
|
||||
|
||||
This API is currently experimental and may change in the near future.
|
||||
This API is in beta and may change in the near future.
|
||||
|
||||
Torch supports sparse tensors in COO(rdinate) format, which can
|
||||
efficiently store and process tensors for which the majority of elements
|
||||
|
|
|
|||
|
|
@ -206,9 +206,12 @@ torch.layout
|
|||
|
||||
.. class:: torch.layout
|
||||
|
||||
.. warning::
|
||||
The ``torch.layout`` class is in beta and subject to change.
|
||||
|
||||
A :class:`torch.layout` is an object that represents the memory layout of a
|
||||
:class:`torch.Tensor`. Currently, we support ``torch.strided`` (dense Tensors)
|
||||
and have experimental support for ``torch.sparse_coo`` (sparse COO Tensors).
|
||||
and have beta support for ``torch.sparse_coo`` (sparse COO Tensors).
|
||||
|
||||
``torch.strided`` represents dense Tensors and is the memory layout that
|
||||
is most commonly used. Each strided tensor has an associated
|
||||
|
|
|
|||
Loading…
Reference in a new issue