Skip to content

Commit 970227a

Browse files
author
Svetlana Karslioglu
authored
Merge branch 'main' into ir
2 parents c86257a + 4e25f97 commit 970227a

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

en-wordlist.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ CPUs
5252
CPython
5353
CUDA
5454
Caffe
55+
callable's
5556
Captum
5657
Captum's
5758
CartPole
@@ -72,6 +73,8 @@ DQN
7273
DataPipe
7374
DataPipes
7475
DataLoaders
76+
Decompositions
77+
decompositions
7578
DeepMind
7679
DeiT
7780
DenseNet
@@ -160,6 +163,8 @@ ONNX Runtime
160163
ONNX Script
161164
OpenAI
162165
OpenMP
166+
Opset
167+
opset
163168
Ornstein
164169
OU
165170
PIL

intermediate_source/_torch_export_nightly_tutorial.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#
3434
# ``torch.export`` extracts single-graph representations from PyTorch programs
3535
# by tracing the target function, given example inputs.
36-
# ``torch.export.export()`` is the main entrypoint for ``torch.export``.
36+
# ``torch.export.export()`` is the main entry point for ``torch.export``.
3737
#
3838
# In this tutorial, ``torch.export`` and ``torch.export.export()`` are practically synonymous,
3939
# though ``torch.export`` generally refers to the PyTorch 2.X export process, and ``torch.export.export()``
@@ -546,9 +546,9 @@ def forward(self, x):
546546
# `here <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/decompositions.py>`__.
547547
# If you would like to use some of these existing decomposition functions,
548548
# you can pass in a list of operators you would like to decompose to the
549-
# :func:`get_decompositions <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/__init__.py#L191>`__
550-
# function, which will return a decomposition table using the pre-implemented
551-
# decompositions.
549+
# `get_decompositions <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/__init__.py#L191>`__
550+
# function, which will return a decomposition table using existing
551+
# decomposition implementations.
552552

553553
class M(torch.nn.Module):
554554
def __init__(self):

intermediate_source/torch_export_nightly_tutorial.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Basic Usage
3030

3131
``torch.export`` extracts single-graph representations from PyTorch programs
3232
by tracing the target function, given example inputs.
33-
``torch.export.export()`` is the main entrypoint for ``torch.export``.
33+
``torch.export.export()`` is the main entry point for ``torch.export``.
3434

3535
In this tutorial, ``torch.export`` and ``torch.export.export()`` are practically synonymous,
3636
though ``torch.export`` generally refers to the PyTorch 2.X export process, and ``torch.export.export()``
@@ -770,9 +770,9 @@ Most ATen operators already have decompositions, which are located
770770
`here <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/decompositions.py>`__.
771771
If you would like to use some of these existing decomposition functions,
772772
you can pass in a list of operators you would like to decompose to the
773-
:func:`get_decompositions <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/__init__.py#L191>`__
774-
function, which will return a decomposition table using the pre-implemented
775-
decompositions.
773+
`get_decompositions <https://github.com/pytorch/pytorch/blob/b460c3089367f3fadd40aa2cb3808ee370aa61e1/torch/_decomp/__init__.py#L191>`__
774+
function, which will return a decomposition table using existing
775+
decomposition implementations.
776776
777777
.. code-block:: python
778778

prototype_source/prototype_index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Prototype features are not available as part of binary distributions like PyPI o
9797
:card_description: Prune BERT to be 2:4 sparse and accelerate for inference.
9898
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
9999
:link: prototype/semi_structured_sparse.html
100-
:tags: Model-Optimziation
100+
:tags: Model-Optimiziation
101101

102102
.. Mobile
103103

0 commit comments

Comments
 (0)