mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
[FX] Minor docs changes (#50966)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/50966 Test Plan: Imported from OSS Reviewed By: suo Differential Revision: D26029101 Pulled By: jamesr66a fbshipit-source-id: 4374771be74d0a4d05fdd29107be5357130c2a76
This commit is contained in:
parent
5c1c858ca8
commit
789f6f1250
1 changed files with 12 additions and 12 deletions
|
|
@ -7,11 +7,21 @@ Overview
|
|||
--------
|
||||
.. automodule:: torch.fx
|
||||
|
||||
Writing Transformations
|
||||
-----------------------
|
||||
|
||||
TODO
|
||||
|
||||
Debugging Transformations
|
||||
-------------------------
|
||||
|
||||
TODO
|
||||
|
||||
Limitations of Symbolic Tracing
|
||||
-------------------------------
|
||||
|
||||
FX uses a system of **symbolic tracing** (a.k.a `abstract
|
||||
interpretation <https://en.wikipedia.org/wiki/Abstract_interpretation>`__)
|
||||
FX uses a system of **symbolic tracing** (a.k.a `symbolic
|
||||
execution <https://en.wikipedia.org/wiki/Symbolic_execution>`__)
|
||||
to capture the semantics of programs in a transformable/analyzable form.
|
||||
The system is **tracing** in that it executes the program (really an
|
||||
``nn.Module`` or function) to gather this information. It is
|
||||
|
|
@ -288,16 +298,6 @@ Miscellanea
|
|||
- Annotations on local names within a function are not currently
|
||||
supported.
|
||||
|
||||
Writing Transformations
|
||||
-----------------------
|
||||
|
||||
TODO
|
||||
|
||||
Debugging Transformations
|
||||
-------------------------
|
||||
|
||||
TODO
|
||||
|
||||
API Reference
|
||||
-------------
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue