From f1e682ea90391bf1d35f011736b55b62d5b864b4 Mon Sep 17 00:00:00 2001 From: Peter Whidden Date: Mon, 21 Sep 2020 13:28:33 -0700 Subject: [PATCH] Fix typo "asynchronizely" -> "asynchronously" (#1154) --- 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.