From: miha-q <> Date: Sun, 3 Mar 2024 07:14:27 +0000 (-0500) Subject: Sun Mar 3 02:14:27 AM EST 2024 X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=8d0926a5cd0c284f2241d3ad5220120138460043;p=QAnsel.git Sun Mar 3 02:14:27 AM EST 2024 --- diff --git a/src/gpu/gpu.c b/src/gpu/gpu.c index 3ad6551..9b68ed7 100644 --- a/src/gpu/gpu.c +++ b/src/gpu/gpu.c @@ -110,7 +110,7 @@ void GPU_mmul(float* ptrR, float* ptrA, float* ptrB, size_t rowsA, size_t colsB, if (GPU_mmul_cache == NULL) { //Load and compile program - char tmp = malloc(src_gpu_mmul_cl_len); + char* tmp = malloc(src_gpu_mmul_cl_len); memcpy(tmp, src_gpu_mmul_cl, src_gpu_mmul_cl_len); const char* ptr = (const char*)src_gpu_mmul_cl; program = clCreateProgramWithSource(GPU_context, 1, (const char**)&tmp, NULL, &err);