1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-22 16:14:24 +00:00

Change comment indentation

This commit is contained in:
Steffo 2022-11-29 17:26:09 +01:00 committed by GitHub
parent ee33d3861b
commit c990113d41
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,11 +35,11 @@ __host__ static void init_array(DATA_TYPE** A, DATA_TYPE* X)
/* /*
* A = [ * A = [
* [ 0, 0, 0, 0, ... ], * [ 0, 0, 0, 0, ... ],
* [ 1 / NX, 2 / NX, 3 / NX, 4 / NX, ... ], * [ 1 / NX, 2 / NX, 3 / NX, 4 / NX, ... ],
* [ 2 / NX, 4 / NX, 6 / NX, 8 / NX, ... ], * [ 2 / NX, 4 / NX, 6 / NX, 8 / NX, ... ],
* [ 3 / NX, 6 / NX, 9 / NX, 12 / NX, ... ], * [ 3 / NX, 6 / NX, 9 / NX, 12 / NX, ... ],
* ... * ...
* ] * ]
*/ */
for (unsigned int x = 0; x < NX; x++) for (unsigned int x = 0; x < NX; x++)