From a1b53f1e193bf159dddb45b47dc9ec04bea53065 Mon Sep 17 00:00:00 2001 From: Ankush Date: Wed, 11 Sep 2024 09:32:57 -0700 Subject: [PATCH] Fix typo --- intermediate_source/dist_tuto.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/dist_tuto.rst b/intermediate_source/dist_tuto.rst index 35f6341395..fc52075c23 100644 --- a/intermediate_source/dist_tuto.rst +++ b/intermediate_source/dist_tuto.rst @@ -156,7 +156,7 @@ we should not modify the sent tensor nor access the received tensor before ``req In other words, - writing to ``tensor`` after ``dist.isend()`` will result in undefined behaviour. -- reading from ``tensor`` after ``dist.irecv()`` will result in undefined behaviour. +- reading from ``tensor`` before ``dist.irecv()`` will result in undefined behaviour. However, after ``req.wait()`` has been executed we are guaranteed that the communication took place,