From 8b9b05a0007154d964ec96ed619a0415e490ee01 Mon Sep 17 00:00:00 2001 From: Peter Whidden Date: Thu, 10 Sep 2020 23:58:21 -0700 Subject: [PATCH] Fix typo "asynchronizely" -> "asynchronously" --- intermediate_source/model_parallel_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/model_parallel_tutorial.py b/intermediate_source/model_parallel_tutorial.py index df43f6fa5f9..62ca66db2bc 100644 --- a/intermediate_source/model_parallel_tutorial.py +++ b/intermediate_source/model_parallel_tutorial.py @@ -245,7 +245,7 @@ def plot(means, stds, labels, fig_name): # ----------------------------- # # In the following experiments, we further divide each 120-image batch into -# 20-image splits. As PyTorch launches CUDA operations asynchronizely, the +# 20-image splits. As PyTorch launches CUDA operations asynchronously, the # implementation does not need to spawn multiple threads to achieve # concurrency.