1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2025-02-16 17:13:57 +00:00

Left-align argv asterisks

This commit is contained in:
Steffo 2022-11-29 17:33:56 +01:00 committed by GitHub
parent 60078f8129
commit 826c3112f8
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ __host__ static void kernel_atax(DATA_TYPE** A, DATA_TYPE* X, DATA_TYPE* Y)
*
* We should probably avoid editing this.
*/
__host__ int main(int argc, char **argv)
__host__ int main(int argc, char** argv)
{
// A[NX][NY]
DATA_TYPE** A = new DATA_TYPE*[NX] {};