From: miha-q <>
Date: Sun, 3 Mar 2024 06:13:30 +0000 (-0500)
Subject: Sun Mar  3 01:13:30 AM EST 2024
X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=ffbf561365206002acad1796a797936065817b6f;p=QAnsel.git

Sun Mar  3 01:13:30 AM EST 2024
---

diff --git a/src/gpu/gpu.c b/src/gpu/gpu.c
index 02463a3..ad8b946 100644
--- a/src/gpu/gpu.c
+++ b/src/gpu/gpu.c
@@ -132,9 +132,13 @@ void GPU_mmul(float* ptrR, float* ptrA, float* ptrB, size_t rowsA, size_t colsB,
 			free(log);
 			exit(1);
 		}
+		printf("a\n");
 		clGetProgramInfo(program, CL_PROGRAM_BINARY_SIZES, sizeof(size_t), &GPU_mmul_cache_len, NULL);
+		printf("b\n");
 		GPU_mmul_cache = malloc(GPU_mmul_cache_len);
+		printf("c\n");
 		clGetProgramInfo(program, CL_PROGRAM_BINARIES, sizeof(unsigned char*), &GPU_mmul_cache, NULL);
+		printf("d\n");
 	}
 	else
 	{