File tree Expand file tree Collapse file tree 8 files changed +725
-4
lines changed Expand file tree Collapse file tree 8 files changed +725
-4
lines changed Original file line number Diff line number Diff line change 184
184
"ConverterImplSignature" : "ConverterImplSignature" ,
185
185
}
186
186
187
+ nbsphinx_execute = "never"
188
+
187
189
# -- A patch that prevents Sphinx from cross-referencing ivar tags -------
188
190
# See http://stackoverflow.com/a/41184353/3343043
189
191
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ Tutorials
111
111
tutorials/_rendered_examples/dynamo/torch_compile_transformers_example
112
112
tutorials/_rendered_examples/dynamo/torch_compile_advanced_usage
113
113
tutorials/_rendered_examples/dynamo/torch_compile_stable_diffusion
114
+ tutorials/_rendered_examples/dynamo/custom_kernel_plugins
114
115
115
116
Python API Documenation
116
117
------------------------
Original file line number Diff line number Diff line change 1
- sphinx == 4. 5.0
1
+ sphinx == 5.0.1
2
2
sphinx-gallery == 0.13.0
3
- breathe == 4.33.1
4
- exhale == 0.3.1
3
+ breathe == 4.34.0
4
+ exhale == 0.3.7
5
5
-e git+https://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme
6
- nbsphinx == 0.8.8
6
+ nbsphinx == 0.9.3
7
7
docutils == 0.17.1
8
8
pillow
Original file line number Diff line number Diff line change
1
+
2
+ :orphan:
3
+
4
+ .. _sphx_glr_sg_execution_times :
5
+
6
+
7
+ Computation times
8
+ =================
9
+ **00:00.000 ** total execution time for 4 files **from all galleries **:
10
+
11
+ .. container ::
12
+
13
+ .. raw :: html
14
+
15
+ <style scoped >
16
+ <link href="https://cdnjs.cloudflare .com/ajax/libs/twitter-bootstrap /5.3 .0/css/bootstrap.min .css" rel="stylesheet" />
17
+ <link href="https://cdn.datatables .net/1.13 .6/css/dataTables.bootstrap5.min .css" rel="stylesheet" />
18
+ </style >
19
+ <script src =" https://code.jquery.com/jquery-3.7.0.js" ></script >
20
+ <script src =" https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js" ></script >
21
+ <script src =" https://cdn.datatables.net/1.13.6/js/dataTables.bootstrap5.min.js" ></script >
22
+ <script type =" text/javascript" class =" init" >
23
+ $ (document ).ready ( function () {
24
+ $ (' table.sg-datatable' ).DataTable ({order: [[1 , ' desc' ]]});
25
+ } );
26
+ </script >
27
+
28
+ .. list-table ::
29
+ :header-rows: 1
30
+ :class: table table-striped sg-datatable
31
+
32
+ * - Example
33
+ - Time
34
+ - Mem (MB)
35
+ * - :ref: `sphx_glr_tutorials__rendered_examples_dynamo_torch_compile_advanced_usage.py ` (``../examples/dynamo/torch_compile_advanced_usage.py ``)
36
+ - 00:00.000
37
+ - 0.0
38
+ * - :ref: `sphx_glr_tutorials__rendered_examples_dynamo_torch_compile_resnet_example.py ` (``../examples/dynamo/torch_compile_resnet_example.py ``)
39
+ - 00:00.000
40
+ - 0.0
41
+ * - :ref: `sphx_glr_tutorials__rendered_examples_dynamo_torch_compile_stable_diffusion.py ` (``../examples/dynamo/torch_compile_stable_diffusion.py ``)
42
+ - 00:00.000
43
+ - 0.0
44
+ * - :ref: `sphx_glr_tutorials__rendered_examples_dynamo_torch_compile_transformers_example.py ` (``../examples/dynamo/torch_compile_transformers_example.py ``)
45
+ - 00:00.000
46
+ - 0.0
Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ a number of ways you can leverage this backend to accelerate inference.
10
10
* :ref: `torch_compile_transformer `: Compiling a Transformer model using ``torch.compile ``
11
11
* :ref: `torch_compile_advanced_usage `: Advanced usage including making a custom backend to use directly with the ``torch.compile `` API
12
12
* :ref: `torch_compile_stable_diffusion `: Compiling a Stable Diffusion model using ``torch.compile ``
13
+ * :ref: `custom_kernel_plugins `: Creating a plugin to use a custom kernel inside TensorRT engines
You can’t perform that action at this time.
0 commit comments