From: miha-q <> Date: Sun, 3 Mar 2024 05:41:02 +0000 (-0500) Subject: Sun Mar 3 12:41:02 AM EST 2024 X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=3ee5ff8436aa4cc4b0396e4c991055a5c0c26ca1;p=QAnsel.git Sun Mar 3 12:41:02 AM EST 2024 --- diff --git a/src/gpu/gpu_test.c b/src/gpu/gpu_test.c index f79ae1d..6c75205 100644 --- a/src/gpu/gpu_test.c +++ b/src/gpu/gpu_test.c @@ -20,7 +20,7 @@ void GPU_mmul(float* ptrR, float* ptrA, float* ptrB, size_t rowsA, size_t colsB, for (int j = 0; j < colsB; j++) { GPU_GLOBAL_ID_0 = i; - GPU_GLOBAL_ID_1 = i; + GPU_GLOBAL_ID_1 = j; gpu_mmul(ptrR, ptrA, ptrB, rowsA, colsB, shared); } }