Skip to content

Commit 909dc80

Browse files
committed
Auto-generating sphinx docs
1 parent e6dcd9f commit 909dc80

File tree

7 files changed

+35
-35
lines changed

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
@@ -404,7 +404,7 @@ Links Mentioned
404404

405405
.. rst-class:: sphx-glr-timing
406406

407-
**Total running time of the script:** (0 minutes 1.499 seconds)
407+
**Total running time of the script:** (0 minutes 1.809 seconds)
408408

409409

410410
.. _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
@@ -587,27 +587,27 @@ there is only one program, it will by default be saved to the name "forward".
587587

588588
.. code-block:: none
589589
590-
Edge Dialect graph of encode
590+
Edge Dialect graph of decode
591591
ExportedProgram:
592592
class GraphModule(torch.nn.Module):
593-
def forward(self, x: "f32[1, 10]"):
594-
# 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))
595-
aten_randn_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_randn_default([5, 10], device = device(type='cpu'), pin_memory = False)
596-
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
597-
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
593+
def forward(self, x: "f32[1, 5]"):
594+
# 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))
595+
aten_randn_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_randn_default([10, 5], device = device(type='cpu'), pin_memory = False)
596+
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
597+
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
598598
return (aten_mm_default,)
599599
600600
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)])
601601
Range constraints: {}
602602
603-
Edge Dialect graph of decode
603+
Edge Dialect graph of encode
604604
ExportedProgram:
605605
class GraphModule(torch.nn.Module):
606-
def forward(self, x: "f32[1, 5]"):
607-
# 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))
608-
aten_randn_default: "f32[10, 5]" = executorch_exir_dialects_edge__ops_aten_randn_default([10, 5], device = device(type='cpu'), pin_memory = False)
609-
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
610-
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
606+
def forward(self, x: "f32[1, 10]"):
607+
# 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))
608+
aten_randn_default: "f32[5, 10]" = executorch_exir_dialects_edge__ops_aten_randn_default([5, 10], device = device(type='cpu'), pin_memory = False)
609+
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
610+
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
611611
return (aten_mm_default,)
612612
613613
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)])
@@ -1270,7 +1270,7 @@ Links Mentioned
12701270

12711271
.. rst-class:: sphx-glr-timing
12721272

1273-
**Total running time of the script:** (0 minutes 3.132 seconds)
1273+
**Total running time of the script:** (0 minutes 3.082 seconds)
12741274

12751275

12761276
.. _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:04.631** total execution time for **tutorials** files:
9+
**00:04.890** 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.132 | 0.0 MB |
12+
| :ref:`sphx_glr_tutorials_export-to-executorch-tutorial.py` (``export-to-executorch-tutorial.py``) | 00:03.082 | 0.0 MB |
1313
+---------------------------------------------------------------------------------------------------+-----------+--------+
14-
| :ref:`sphx_glr_tutorials_devtools-integration-tutorial.py` (``devtools-integration-tutorial.py``) | 00:01.499 | 0.0 MB |
14+
| :ref:`sphx_glr_tutorials_devtools-integration-tutorial.py` (``devtools-integration-tutorial.py``) | 00:01.809 | 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
@@ -776,7 +776,7 @@ <h3>Links Mentioned<a class="headerlink" href="#links-mentioned" title="Permalin
776776
<li><p><a class="reference external" href="../etdump.html">ETDump</a></p></li>
777777
<li><p><a class="reference external" href="../model-inspector.html">Inspector</a></p></li>
778778
</ul>
779-
<p class="sphx-glr-timing"><strong>Total running time of the script:</strong> (0 minutes 1.499 seconds)</p>
779+
<p class="sphx-glr-timing"><strong>Total running time of the script:</strong> (0 minutes 1.809 seconds)</p>
780780
<div class="sphx-glr-footer sphx-glr-footer-example docutils container" id="sphx-glr-download-tutorials-devtools-integration-tutorial-py">
781781
<div class="sphx-glr-download sphx-glr-download-python docutils container">
782782
<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)