Skip to content

Commit 58d43d7

Browse files
authored
Update 2021-8-31-computational-graphs-constructed-in-pytorch.md
1 parent d6572fb commit 58d43d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2021-8-31-computational-graphs-constructed-in-pytorch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ First of all, let’s look at where the different components of autograd live:
1717
The rest of the files have additional components such as gradient checkers, anomaly detection, and the autograd profiler.
1818

1919
[torch/csrc/autograd](https://github.com/pytorch/pytorch/tree/release/1.9/torch/csrc/autograd): This is where the graph creation and execution-related code lives.
20-
All this code is written in C++, since it is a critical part that is required to be extremely performant. Here, we have several files that implement the engine, metadata storage, and all the needed components. Alongside this, we have several files whose names start with `python_`, and their main responsibility is to allow python objects to be used in the autograd engine.
20+
All this code is written in C++, since it is a critical part that is required to be extremely performant. Here we have several files that implement the engine, metadata storage, and all the needed components. Alongside this, we have several files whose names start with `python_`, and their main responsibility is to allow python objects to be used in the autograd engine.
2121

2222
# Graph Creation
2323

0 commit comments

Comments
 (0)