clEnqueueReadBufferのOpenCL処理
フォローアップこの問題私の最後のコードスニペット #include <stdio.h> #include <stdint.h> #include <stdlib.h> #define CL_TARGET_OPENCL_VERSION 210 #include "CL/cl.h" char* program_src = "__kernel void SAXPY (__global float* x, __global float* y, float a)\n" "{\n" "const int i = get_global...