mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-26 01:54:22 +00:00
print_array
: Add (obvious) comment
This commit is contained in:
parent
1e45a5adca
commit
c5c79e00c4
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ static void print_array(int nx,
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
/// Print all numbers in the array sequentially.
|
||||||
// Cannot parallelize this: prints have to be sequential to make sense!
|
// Cannot parallelize this: prints have to be sequential to make sense!
|
||||||
for (i = 0; i < nx; i++)
|
for (i = 0; i < nx; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue