Skip to content

Commit 347d91b

Browse files
committed
Auto-generating sphinx docs
1 parent 8702129 commit 347d91b

7 files changed

+35
-35
lines changed

main/_sources/tutorials/devtools-integration-tutorial.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ Links Mentioned
426426

427427
.. rst-class:: sphx-glr-timing
428428

429-
**Total running time of the script:** (0 minutes 1.896 seconds)
429+
**Total running time of the script:** (0 minutes 2.053 seconds)
430430

431431

432432
.. _sphx_glr_download_tutorials_devtools-integration-tutorial.py:

main/_sources/tutorials/export-to-executorch-tutorial.rst.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -625,27 +625,27 @@ there is only one program, it will by default be saved to the name "forward".
625625
torch._C._set_onednn_allow_tf32(_allow_tf32)
626626
/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/backends/mkldnn/__init__.py:78: UserWarning: TF32 acceleration on top of oneDNN is available for Intel GPUs. The current Torch version does not have Intel GPU Support. (Triggered internally at /pytorch/aten/src/ATen/Context.cpp:148.)
627627
torch._C._set_onednn_allow_tf32(_allow_tf32)
628-
Edge Dialect graph of encode
628+
Edge Dialect graph of decode
629629
ExportedProgram:
630630
class GraphModule(torch.nn.Module):
631-
def forward(self, x: "f32[1, 10]"):
632-
# File: /pytorch/executorch/docs/source/tutorials_source/export-to-executorch-tutorial.py:255 in forward, code: return torch.nn.functional.linear(x, torch.randn(5, 10))
633-
aten_randn_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_randn_default([5, 10], device = device(type='cpu'), pin_memory = False)
634-
aten_permute_copy_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_permute_copy_default(aten_randn_default, [1, 0]); aten_randn_default = None
635-
aten_mm_default: "f32[1, 5]" = executorch_exir_dialects_edge__ops_aten_mm_default(x, aten_permute_copy_default); x = aten_permute_copy_default = None
631+
def forward(self, x: "f32[1, 5]"):
632+
# File: /pytorch/executorch/docs/source/tutorials_source/export-to-executorch-tutorial.py:260 in forward, code: return torch.nn.functional.linear(x, torch.randn(10, 5))
633+
aten_randn_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_randn_default([10, 5], device = device(type='cpu'), pin_memory = False)
634+
aten_permute_copy_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_permute_copy_default(aten_randn_default, [1, 0]); aten_randn_default = None
635+
aten_mm_default: "f32[1, 10]" = executorch_exir_dialects_edge__ops_aten_mm_default(x, aten_permute_copy_default); x = aten_permute_copy_default = None
636636
return (aten_mm_default,)
637637
638638
Graph signature: ExportGraphSignature(input_specs=[InputSpec(kind=<InputKind.USER_INPUT: 1>, arg=TensorArgument(name='x'), target=None, persistent=None)], output_specs=[OutputSpec(kind=<OutputKind.USER_OUTPUT: 1>, arg=TensorArgument(name='aten_mm_default'), target=None)])
639639
Range constraints: {}
640640
641-
Edge Dialect graph of decode
641+
Edge Dialect graph of encode
642642
ExportedProgram:
643643
class GraphModule(torch.nn.Module):
644-
def forward(self, x: "f32[1, 5]"):
645-
# File: /pytorch/executorch/docs/source/tutorials_source/export-to-executorch-tutorial.py:260 in forward, code: return torch.nn.functional.linear(x, torch.randn(10, 5))
646-
aten_randn_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_randn_default([10, 5], device = device(type='cpu'), pin_memory = False)
647-
aten_permute_copy_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_permute_copy_default(aten_randn_default, [1, 0]); aten_randn_default = None
648-
aten_mm_default: "f32[1, 10]" = executorch_exir_dialects_edge__ops_aten_mm_default(x, aten_permute_copy_default); x = aten_permute_copy_default = None
644+
def forward(self, x: "f32[1, 10]"):
645+
# File: /pytorch/executorch/docs/source/tutorials_source/export-to-executorch-tutorial.py:255 in forward, code: return torch.nn.functional.linear(x, torch.randn(5, 10))
646+
aten_randn_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_randn_default([5, 10], device = device(type='cpu'), pin_memory = False)
647+
aten_permute_copy_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_permute_copy_default(aten_randn_default, [1, 0]); aten_randn_default = None
648+
aten_mm_default: "f32[1, 5]" = executorch_exir_dialects_edge__ops_aten_mm_default(x, aten_permute_copy_default); x = aten_permute_copy_default = None
649649
return (aten_mm_default,)
650650
651651
Graph signature: ExportGraphSignature(input_specs=[InputSpec(kind=<InputKind.USER_INPUT: 1>, arg=TensorArgument(name='x'), target=None, persistent=None)], output_specs=[OutputSpec(kind=<OutputKind.USER_OUTPUT: 1>, arg=TensorArgument(name='aten_mm_default'), target=None)])
@@ -1355,7 +1355,7 @@ Links Mentioned
13551355

13561356
.. rst-class:: sphx-glr-timing
13571357

1358-
**Total running time of the script:** (0 minutes 3.276 seconds)
1358+
**Total running time of the script:** (0 minutes 3.582 seconds)
13591359

13601360

13611361
.. _sphx_glr_download_tutorials_export-to-executorch-tutorial.py:

main/_sources/tutorials/sg_execution_times.rst.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
Computation times
88
=================
9-
**00:05.172** total execution time for **tutorials** files:
9+
**00:05.634** total execution time for **tutorials** files:
1010

1111
+---------------------------------------------------------------------------------------------------+-----------+--------+
12-
| :ref:`sphx_glr_tutorials_export-to-executorch-tutorial.py` (``export-to-executorch-tutorial.py``) | 00:03.276 | 0.0 MB |
12+
| :ref:`sphx_glr_tutorials_export-to-executorch-tutorial.py` (``export-to-executorch-tutorial.py``) | 00:03.582 | 0.0 MB |
1313
+---------------------------------------------------------------------------------------------------+-----------+--------+
14-
| :ref:`sphx_glr_tutorials_devtools-integration-tutorial.py` (``devtools-integration-tutorial.py``) | 00:01.896 | 0.0 MB |
14+
| :ref:`sphx_glr_tutorials_devtools-integration-tutorial.py` (``devtools-integration-tutorial.py``) | 00:02.053 | 0.0 MB |
1515
+---------------------------------------------------------------------------------------------------+-----------+--------+
1616
| :ref:`sphx_glr_tutorials_sdk-integration-tutorial.py` (``sdk-integration-tutorial.py``) | 00:00.000 | 0.0 MB |
1717
+---------------------------------------------------------------------------------------------------+-----------+--------+

main/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/tutorials/devtools-integration-tutorial.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ <h3>Links Mentioned<a class="headerlink" href="#links-mentioned" title="Permalin
796796
<li><p><a class="reference external" href="../etdump.html">ETDump</a></p></li>
797797
<li><p><a class="reference external" href="../model-inspector.html">Inspector</a></p></li>
798798
</ul>
799-
<p class="sphx-glr-timing"><strong>Total running time of the script:</strong> (0 minutes 1.896 seconds)</p>
799+
<p class="sphx-glr-timing"><strong>Total running time of the script:</strong> (0 minutes 2.053 seconds)</p>
800800
<div class="sphx-glr-footer sphx-glr-footer-example docutils container" id="sphx-glr-download-tutorials-devtools-integration-tutorial-py">
801801
<div class="sphx-glr-download sphx-glr-download-python docutils container">
802802
<p><a class="reference download internal" download="" href="../_downloads/19eb0a842fd17829284e2ef09d1cda78/devtools-integration-tutorial.py"><code class="xref download docutils literal notranslate"><span class="pre">Download</span> <span class="pre">Python</span> <span class="pre">source</span> <span class="pre">code:</span> <span class="pre">devtools-integration-tutorial.py</span></code></a></p>

0 commit comments

Comments
 (0)