From: miha-q <> Date: Mon, 4 Mar 2024 05:40:14 +0000 (-0500) Subject: Mon Mar 4 12:40:14 AM EST 2024 X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=3fda327fe3cc7243630666e2d4a22e9c50fa78a8;p=QAnsel.git Mon Mar 4 12:40:14 AM EST 2024 --- diff --git a/src/gpu/gpu.c b/src/gpu/gpu.c index 23a6df5..3879619 100644 --- a/src/gpu/gpu.c +++ b/src/gpu/gpu.c @@ -71,6 +71,7 @@ void GPU_clean() void GPU_mmul(float* ptrR, float* ptrA, float* ptrB, int rowsA, int colsB, int shared) { + printf("b\n"); //Create buffers size_t sizeA = rowsA * shared; size_t sizeB = shared * colsB; @@ -151,6 +152,7 @@ void GPU_mmul(float* ptrR, float* ptrA, float* ptrB, int rowsA, int colsB, int s void GPU_knk(float* ptrR, int rowsR, int colsR, float* ptrA, int rowsA, int colsA, float* ptrB, int rowsB, int colsB) { + printf("b\n"); //Create buffers size_t sizeA = (rowsA * 2) * (colsA * 2); size_t sizeB = (rowsB * 2) * (colsB * 2);