Skip to content

Commit

Permalink
Add links to distributed training documentation (#8944)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Feb 21, 2024
1 parent 844a9dc commit 9de65d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/source/tutorial/distributed_pyg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ In real life applications, graphs often consists of billions of nodes that canno
This is when distributed training of Graph Neural Networks comes in handy.
By allocating a number of partitions of the large graph into a cluster of CPUs, one can deploy synchronized model training on the whole dataset at once by making use of :pytorch:`PyTorch's` `Distributed Data Parallel (DDP) <https://pytorch.org/docs/stable/notes/ddp.html>`_ capabilities.
This architecture seamlessly distributes training of Graph Neural Networks across multiple nodes via `Remote Procedure Calls (RPCs) <https://pytorch.org/docs/stable/rpc.html>`_ for efficient sampling and retrieval of non-local features with traditional DDP for model training.
This new technique in :pyg:`PyG` was produced by engineers from `Intel <https://intel.com>`_ and `Kumo AI <https://kumo.ai/>`_.


Key Advantages
--------------
Expand Down

0 comments on commit 9de65d8

Please sign in to comment.