diff options
-rw-r--r-- | trampoline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trampoline.c b/trampoline.c index bed457a..bfbc508 100644 --- a/trampoline.c +++ b/trampoline.c @@ -326,7 +326,7 @@ int tramp_set_kernel_args(unsigned int raw_len) { cl_int ret = 0; - device_result = clCreateBuffer(context, CL_MEM_WRITE_ONLY, 1024, NULL, &ret); + device_result = clCreateBuffer(context, CL_MEM_WRITE_ONLY, 65536, NULL, &ret); if (ret != CL_SUCCESS) { fprintf(stderr, "Failed to create buffer for slave device: %s ", get_cl_error_string(ret)); return 1; |