From 7f8a2ef60adbfbade05d4e63e82a7a427d53ab2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kn=C3=BCpfer?= Date: Wed, 27 Sep 2023 08:04:49 +0200 Subject: [PATCH] Fixed matrix multiplication example output --- docs/sphinx/examples/matrix_multiplication.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sphinx/examples/matrix_multiplication.rst b/docs/sphinx/examples/matrix_multiplication.rst index 995e1ebfef3f..3039bf1d5cda 100644 --- a/docs/sphinx/examples/matrix_multiplication.rst +++ b/docs/sphinx/examples/matrix_multiplication.rst @@ -26,7 +26,7 @@ This program will perform a matrix multiplication in parallel. The output will l Resultant Matrix is : 124 93 - 111 127 + 130 82 Setup ===== @@ -73,7 +73,7 @@ This should print: Resultant Matrix is : 124 93 - 111 127 + 130 82 Notice that the numbers may be different because of the random initialization of the matrices.