mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-26 01:54:22 +00:00
print_array
: Improve wording
This commit is contained in:
parent
18466da754
commit
d5664a9393
1 changed files with 1 additions and 2 deletions
|
@ -45,8 +45,7 @@ static void print_array(int nx,
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
// Cannot optimize this: prints have to be dependent on each other 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++)
|
||||||
{
|
{
|
||||||
fprintf(stderr, DATA_PRINTF_MODIFIER, y[i]);
|
fprintf(stderr, DATA_PRINTF_MODIFIER, y[i]);
|
||||||
|
|
Loading…
Reference in a new issue