tensor_opencl.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2011-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), 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. #include "../test_interfaces.h"
  18. #define KERNEL_LOCATION "tests/datawizard/interfaces/tensor/tensor_opencl_kernel.cl"
  19. extern struct test_config tensor_config;
  20. static struct starpu_opencl_program opencl_program;
  21. void
  22. test_tensor_opencl_func(void *buffers[], void *args)
  23. {
  24. STARPU_SKIP_IF_VALGRIND;
  25. int id, devid, ret;
  26. int factor = *(int *) args;
  27. cl_int err;
  28. cl_kernel kernel;
  29. cl_command_queue queue;
  30. cl_event event;
  31. ret = starpu_opencl_load_opencl_from_file(KERNEL_LOCATION, &opencl_program, NULL);
  32. STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_load_opencl_from_file");
  33. int nx = STARPU_TENSOR_GET_NX(buffers[0]);
  34. int ny = STARPU_TENSOR_GET_NY(buffers[0]);
  35. int nz = STARPU_TENSOR_GET_NZ(buffers[0]);
  36. int nt = STARPU_TENSOR_GET_NT(buffers[0]);
  37. unsigned ldy = STARPU_TENSOR_GET_LDY(buffers[0]);
  38. unsigned ldz = STARPU_TENSOR_GET_LDZ(buffers[0]);
  39. unsigned ldt = STARPU_TENSOR_GET_LDT(buffers[0]);
  40. cl_mem tensor = (cl_mem) STARPU_TENSOR_GET_DEV_HANDLE(buffers[0]);
  41. cl_context context;
  42. id = starpu_worker_get_id_check();
  43. devid = starpu_worker_get_devid(id);
  44. starpu_opencl_get_context(devid, &context);
  45. cl_mem fail = clCreateBuffer(context, CL_MEM_COPY_HOST_PTR,
  46. sizeof(int), &tensor_config.copy_failed, &err);
  47. if (err != CL_SUCCESS)
  48. STARPU_OPENCL_REPORT_ERROR(err);
  49. err = starpu_opencl_load_kernel(&kernel,
  50. &queue,
  51. &opencl_program,
  52. "tensor_opencl",
  53. devid);
  54. if (err != CL_SUCCESS)
  55. STARPU_OPENCL_REPORT_ERROR(err);
  56. int nargs;
  57. nargs = starpu_opencl_set_kernel_args(&err, &kernel,
  58. sizeof(tensor), &tensor,
  59. sizeof(nx), &nx,
  60. sizeof(ny), &ny,
  61. sizeof(nz), &nz,
  62. sizeof(nt), &nt,
  63. sizeof(ldy), &ldy,
  64. sizeof(ldz), &ldz,
  65. sizeof(ldt), &ldt,
  66. sizeof(factor), &factor,
  67. sizeof(fail), &fail,
  68. 0);
  69. if (nargs != 10)
  70. {
  71. fprintf(stderr, "Failed to set argument #%d\n", nargs);
  72. STARPU_OPENCL_REPORT_ERROR(err);
  73. }
  74. {
  75. size_t global[3] = {nx, ny, nz*nt};
  76. err = clEnqueueNDRangeKernel(queue,
  77. kernel,
  78. 3,
  79. NULL,
  80. global,
  81. NULL,
  82. 0,
  83. NULL,
  84. &event);
  85. if (err != CL_SUCCESS)
  86. STARPU_OPENCL_REPORT_ERROR(err);
  87. }
  88. err = clEnqueueReadBuffer(queue,
  89. fail,
  90. CL_TRUE,
  91. 0,
  92. sizeof(int),
  93. &tensor_config.copy_failed,
  94. 0,
  95. NULL,
  96. NULL);
  97. if (err != CL_SUCCESS)
  98. STARPU_OPENCL_REPORT_ERROR(err);
  99. clFinish(queue);
  100. starpu_opencl_collect_stats(event);
  101. clReleaseEvent(event);
  102. starpu_opencl_release_kernel(kernel);
  103. ret = starpu_opencl_unload_opencl(&opencl_program);
  104. STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_unload_opencl");
  105. }