Skip to content

Commit 842ddf2

Browse files
cccclaifacebook-github-bot
authored andcommitted
fix typo in documentation
Summary: As title Reviewed By: mergennachin Differential Revision: D47814681 Privacy Context Container: L1124100 fbshipit-source-id: 0a402a9a7701da6b110b7cf5712b68a020d5395d
1 parent c2c0b0f commit 842ddf2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/website/docs/ir_spec/00_exir.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ semantics of PyTorch programs that are written in Python. EXIR primarily
88
represents computation in a streamlined list of operations, with limited support
99
for dynamism such as control flows.
1010

11-
To create an EXIR, a front end can be used that soundly captures a PyTorch
11+
To create an EXIR, a frontend can be used that soundly captures a PyTorch
1212
program via a trace-specializing mechanism. The resulting EXIR can then be
1313
optimized and executed by a backend.
1414

1515
The key concepts that will be covered in this document include:
16-
- ExportedProgram: the datastructure containing the EXIR program
16+
- ExportedProgram: the data structure containing the EXIR program
1717
- Graph: which consists of a list of nodes.
1818
- Nodes represent operations, control flow, and metadata stored on this node.
1919
- Values are produced and consumed by nodes.
@@ -98,7 +98,7 @@ details in the next section):
9898
* 0 or more nodes of op type `call_function`
9999
* exactly 1 node of op type `output`
100100

101-
**Collorary:** The smallest valid Graph will be of one Node. i.e. nodes is never empty.
101+
**Collorary:** The smallest valid Graph will be of one node. i.e. nodes is never empty.
102102

103103
**Definition:**
104104
The set of `placeholder` nodes of a Graph represents the **inputs** of the Graph of GraphModule.

0 commit comments

Comments
 (0)