From 3ee5ff8436aa4cc4b0396e4c991055a5c0c26ca1 Mon Sep 17 00:00:00 2001 From: miha-q <> Date: Sun, 3 Mar 2024 00:41:02 -0500 Subject: [PATCH] Sun Mar 3 12:41:02 AM EST 2024 --- src/gpu/gpu_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.5