acquire_release_opencl.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2012 inria
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #include <starpu.h>
  17. extern struct starpu_opencl_program opencl_program;
  18. void increment_opencl(void *buffers[], void *args)
  19. {
  20. (void) args;
  21. int id, devid;
  22. cl_int err;
  23. cl_kernel kernel;
  24. cl_command_queue queue;
  25. cl_event event;
  26. cl_mem val = (cl_mem)STARPU_VARIABLE_GET_PTR(buffers[0]);
  27. id = starpu_worker_get_id();
  28. devid = starpu_worker_get_devid(id);
  29. err = starpu_opencl_load_kernel(&kernel, &queue, &opencl_program, "_increment_opencl_codelet", devid);
  30. if (err != CL_SUCCESS)
  31. STARPU_OPENCL_REPORT_ERROR(err);
  32. err = clSetKernelArg(kernel, 0, sizeof(val), &val);
  33. if (err != CL_SUCCESS)
  34. STARPU_OPENCL_REPORT_ERROR(err);
  35. {
  36. size_t global=1;
  37. size_t local=1;
  38. err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global, &local, 0, NULL, &event);
  39. if (err != CL_SUCCESS)
  40. STARPU_OPENCL_REPORT_ERROR(err);
  41. }
  42. clFinish(queue);
  43. starpu_opencl_collect_stats(event);
  44. clReleaseEvent(event);
  45. starpu_opencl_release_kernel(kernel);
  46. }