Home | History | Annotate | Download | only in lib

Lines Matching defs:program

5    This program is free software; you can redistribute it and/or modify
10 This program is distributed in the hope that it will be useful,
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 in a data parallel fashion. The filename of the OpenCL program source
49 cl_program program;
64 /* Initialize the data the OpenCl program operates on. */
106 program = clCreateProgramWithSource (context, 1, &program_source,
110 err = clBuildProgram (program, 0, NULL, kernel_build_opts, NULL,
116 CHK (clGetProgramBuildInfo (program, device, CL_PROGRAM_BUILD_LOG, 0,
121 CHK (clGetProgramBuildInfo (program, device, CL_PROGRAM_BUILD_LOG,
129 /* In some cases it might be handy to save the OpenCL program binaries to do
131 function: save_program_binaries (program);. */
133 kernel = clCreateKernel (program, "testkernel", &err);
162 CHK (clReleaseProgram (program));