From c5c79e00c4ba13820eac33184310bd300d64461d Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 17 Nov 2022 01:56:27 +0100 Subject: [PATCH] `print_array`: Add (obvious) comment --- OpenMP/linear-algebra/kernels/atax/atax.c | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenMP/linear-algebra/kernels/atax/atax.c b/OpenMP/linear-algebra/kernels/atax/atax.c index 0d8c64c..dc64050 100644 --- a/OpenMP/linear-algebra/kernels/atax/atax.c +++ b/OpenMP/linear-algebra/kernels/atax/atax.c @@ -44,6 +44,7 @@ static void print_array(int nx, { int i; + /// Print all numbers in the array sequentially. // Cannot parallelize this: prints have to be sequential to make sense! for (i = 0; i < nx; i++) {