From ffbf561365206002acad1796a797936065817b6f Mon Sep 17 00:00:00 2001 From: miha-q <> Date: Sun, 3 Mar 2024 01:13:30 -0500 Subject: [PATCH] Sun Mar 3 01:13:30 AM EST 2024 --- src/gpu/gpu.c | 4 ++++ 1 file changed, 4 insertions(+) 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 { -- 2.39.5