From e122376aeb85235ce59d1bd03124813263046177 Mon Sep 17 00:00:00 2001 From: VictorianHues Date: Mon, 16 Sep 2024 21:54:55 +0200 Subject: [PATCH] Corrected subject-verb agreement and typo in Parallel algorithms section --- notebooks/matrix_matrix.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/matrix_matrix.ipynb b/notebooks/matrix_matrix.ipynb index 5f1fd22..f984220 100644 --- a/notebooks/matrix_matrix.ipynb +++ b/notebooks/matrix_matrix.ipynb @@ -312,7 +312,7 @@ "source": [ "### Parallel algorithms\n", "\n", - "The loops over `i` and `j` are trivially parallel implies that all the entries of matrix C can be potentially computed in parallel. However, *which it the most efficient solution to solve all these entries in parallel in a distributed system?* To find this we will consider different parallelization strategies:\n", + "The loops over `i` and `j` are trivially parallel, implying that all the entries of matrix C can be potentially computed in parallel. However, *which is the most efficient solution to solve all these entries in parallel in a distributed system?* To find this we will consider different parallelization strategies:\n", "\n", "- Algorithm 1: each worker computes a single entry of C\n", "- Algorithm 2: each worker computes a single row of C\n",