From f23deb153445a962652d5ec6e5a68d0b5f5972c0 Mon Sep 17 00:00:00 2001 From: Francesc Verdugo Date: Thu, 12 Sep 2024 17:52:30 +0200 Subject: [PATCH] minor --- docs/src/solutions_for_all_notebooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/solutions_for_all_notebooks.md b/docs/src/solutions_for_all_notebooks.md index c279b24..ca35702 100644 --- a/docs/src/solutions_for_all_notebooks.md +++ b/docs/src/solutions_for_all_notebooks.md @@ -259,7 +259,7 @@ It is more natural to work with column partitions in Julia if possible since mat in "col major" format. Note that we do not need all the auxiliary transposes anymore. ```julia -function matmul_mpi_3_col!(C,A,B) +function matmul_mpi_3!(C,A,B) comm = MPI.COMM_WORLD rank = MPI.Comm_rank(comm) P = MPI.Comm_size(comm)