vector_interface.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2016 Université de Bordeaux
  4. * Copyright (C) 2010, 2011, 2012, 2013, 2014 CNRS
  5. * Copyright (C) 2017 Inria
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #include <starpu.h>
  19. #include <common/config.h>
  20. #include <datawizard/coherency.h>
  21. #include <datawizard/copy_driver.h>
  22. #include <datawizard/filters.h>
  23. #include <datawizard/memory_nodes.h>
  24. #include <starpu_hash.h>
  25. #include <starpu_cuda.h>
  26. #include <starpu_opencl.h>
  27. #include <drivers/opencl/driver_opencl.h>
  28. #include <drivers/mic/driver_mic_source.h>
  29. #include <drivers/scc/driver_scc_source.h>
  30. static int copy_any_to_any(void *src_interface, unsigned src_node, void *dst_interface, unsigned dst_node, void *async_data);
  31. static const struct starpu_data_copy_methods vector_copy_data_methods_s =
  32. {
  33. .any_to_any = copy_any_to_any,
  34. };
  35. static void register_vector_handle(starpu_data_handle_t handle, unsigned home_node, void *data_interface);
  36. static starpu_ssize_t allocate_vector_buffer_on_node(void *data_interface_, unsigned dst_node);
  37. static void *vector_handle_to_pointer(starpu_data_handle_t data_handle, unsigned node);
  38. static void free_vector_buffer_on_node(void *data_interface, unsigned node);
  39. static size_t vector_interface_get_size(starpu_data_handle_t handle);
  40. static uint32_t footprint_vector_interface_crc32(starpu_data_handle_t handle);
  41. static int vector_compare(void *data_interface_a, void *data_interface_b);
  42. static void display_vector_interface(starpu_data_handle_t handle, FILE *f);
  43. static int pack_vector_handle(starpu_data_handle_t handle, unsigned node, void **ptr, starpu_ssize_t *count);
  44. static int unpack_vector_handle(starpu_data_handle_t handle, unsigned node, void *ptr, size_t count);
  45. static starpu_ssize_t describe(void *data_interface, char *buf, size_t size);
  46. struct starpu_data_interface_ops starpu_interface_vector_ops =
  47. {
  48. .register_data_handle = register_vector_handle,
  49. .allocate_data_on_node = allocate_vector_buffer_on_node,
  50. .handle_to_pointer = vector_handle_to_pointer,
  51. .free_data_on_node = free_vector_buffer_on_node,
  52. .copy_methods = &vector_copy_data_methods_s,
  53. .get_size = vector_interface_get_size,
  54. .footprint = footprint_vector_interface_crc32,
  55. .compare = vector_compare,
  56. .interfaceid = STARPU_VECTOR_INTERFACE_ID,
  57. .interface_size = sizeof(struct starpu_vector_interface),
  58. .display = display_vector_interface,
  59. .pack_data = pack_vector_handle,
  60. .unpack_data = unpack_vector_handle,
  61. .describe = describe
  62. };
  63. static void *vector_handle_to_pointer(starpu_data_handle_t handle, unsigned node)
  64. {
  65. STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
  66. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  67. starpu_data_get_interface_on_node(handle, node);
  68. return (void*) vector_interface->ptr;
  69. }
  70. static void register_vector_handle(starpu_data_handle_t handle, unsigned home_node, void *data_interface)
  71. {
  72. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *) data_interface;
  73. unsigned node;
  74. for (node = 0; node < STARPU_MAXNODES; node++)
  75. {
  76. struct starpu_vector_interface *local_interface = (struct starpu_vector_interface *)
  77. starpu_data_get_interface_on_node(handle, node);
  78. if (node == home_node)
  79. {
  80. local_interface->ptr = vector_interface->ptr;
  81. local_interface->dev_handle = vector_interface->dev_handle;
  82. local_interface->offset = vector_interface->offset;
  83. }
  84. else
  85. {
  86. local_interface->ptr = 0;
  87. local_interface->dev_handle = 0;
  88. local_interface->offset = 0;
  89. }
  90. local_interface->id = vector_interface->id;
  91. local_interface->nx = vector_interface->nx;
  92. local_interface->elemsize = vector_interface->elemsize;
  93. local_interface->slice_base = vector_interface->slice_base;
  94. }
  95. }
  96. /* declare a new data with the vector interface */
  97. void starpu_vector_data_register(starpu_data_handle_t *handleptr, int home_node,
  98. uintptr_t ptr, uint32_t nx, size_t elemsize)
  99. {
  100. struct starpu_vector_interface vector =
  101. {
  102. .id = STARPU_VECTOR_INTERFACE_ID,
  103. .ptr = ptr,
  104. .nx = nx,
  105. .elemsize = elemsize,
  106. .dev_handle = ptr,
  107. .slice_base = 0,
  108. .offset = 0
  109. };
  110. #if (!defined(STARPU_SIMGRID) && !defined(STARPU_OPENMP))
  111. if (home_node == STARPU_MAIN_RAM)
  112. {
  113. STARPU_ASSERT_ACCESSIBLE(ptr);
  114. STARPU_ASSERT_ACCESSIBLE(ptr + nx*elemsize - 1);
  115. }
  116. #endif
  117. #ifdef STARPU_USE_SCC
  118. _starpu_scc_set_offset_in_shared_memory((void*)vector.ptr, (void**)&(vector.dev_handle), &(vector.offset));
  119. #endif
  120. starpu_data_register(handleptr, home_node, &vector, &starpu_interface_vector_ops);
  121. }
  122. void starpu_vector_ptr_register(starpu_data_handle_t handle, unsigned node,
  123. uintptr_t ptr, uintptr_t dev_handle, size_t offset)
  124. {
  125. struct starpu_vector_interface *vector_interface = starpu_data_get_interface_on_node(handle, node);
  126. starpu_data_ptr_register(handle, node);
  127. vector_interface->ptr = ptr;
  128. vector_interface->dev_handle = dev_handle;
  129. vector_interface->offset = offset;
  130. }
  131. static uint32_t footprint_vector_interface_crc32(starpu_data_handle_t handle)
  132. {
  133. return starpu_hash_crc32c_be(starpu_vector_get_nx(handle), 0);
  134. }
  135. static int vector_compare(void *data_interface_a, void *data_interface_b)
  136. {
  137. struct starpu_vector_interface *vector_a = (struct starpu_vector_interface *) data_interface_a;
  138. struct starpu_vector_interface *vector_b = (struct starpu_vector_interface *) data_interface_b;
  139. /* Two vectors are considered compatible if they have the same size */
  140. return ((vector_a->nx == vector_b->nx)
  141. && (vector_a->elemsize == vector_b->elemsize));
  142. }
  143. static void display_vector_interface(starpu_data_handle_t handle, FILE *f)
  144. {
  145. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  146. starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
  147. fprintf(f, "%u\t", vector_interface->nx);
  148. }
  149. static int pack_vector_handle(starpu_data_handle_t handle, unsigned node, void **ptr, starpu_ssize_t *count)
  150. {
  151. STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
  152. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  153. starpu_data_get_interface_on_node(handle, node);
  154. *count = vector_interface->nx*vector_interface->elemsize;
  155. if (ptr != NULL)
  156. {
  157. starpu_malloc_flags(ptr, *count, 0);
  158. memcpy(*ptr, (void*)vector_interface->ptr, vector_interface->elemsize*vector_interface->nx);
  159. }
  160. return 0;
  161. }
  162. static int unpack_vector_handle(starpu_data_handle_t handle, unsigned node, void *ptr, size_t count)
  163. {
  164. STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
  165. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  166. starpu_data_get_interface_on_node(handle, node);
  167. STARPU_ASSERT(count == vector_interface->elemsize * vector_interface->nx);
  168. memcpy((void*)vector_interface->ptr, ptr, count);
  169. return 0;
  170. }
  171. static size_t vector_interface_get_size(starpu_data_handle_t handle)
  172. {
  173. size_t size;
  174. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  175. starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
  176. size = vector_interface->nx*vector_interface->elemsize;
  177. return size;
  178. }
  179. /* offer an access to the data parameters */
  180. uint32_t starpu_vector_get_nx(starpu_data_handle_t handle)
  181. {
  182. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  183. starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
  184. return vector_interface->nx;
  185. }
  186. uintptr_t starpu_vector_get_local_ptr(starpu_data_handle_t handle)
  187. {
  188. unsigned node;
  189. node = _starpu_memory_node_get_local_key();
  190. STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
  191. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  192. starpu_data_get_interface_on_node(handle, node);
  193. return vector_interface->ptr;
  194. }
  195. size_t starpu_vector_get_elemsize(starpu_data_handle_t handle)
  196. {
  197. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *)
  198. starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
  199. return vector_interface->elemsize;
  200. }
  201. /* memory allocation/deallocation primitives for the vector interface */
  202. /* returns the size of the allocated area */
  203. static starpu_ssize_t allocate_vector_buffer_on_node(void *data_interface_, unsigned dst_node)
  204. {
  205. uintptr_t addr = 0, handle;
  206. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *) data_interface_;
  207. uint32_t nx = vector_interface->nx;
  208. size_t elemsize = vector_interface->elemsize;
  209. starpu_ssize_t allocated_memory;
  210. handle = starpu_malloc_on_node(dst_node, nx*elemsize);
  211. if (!handle)
  212. return -ENOMEM;
  213. if (starpu_node_get_kind(dst_node) != STARPU_OPENCL_RAM)
  214. addr = handle;
  215. allocated_memory = nx*elemsize;
  216. /* update the data properly in consequence */
  217. vector_interface->ptr = addr;
  218. vector_interface->dev_handle = handle;
  219. vector_interface->offset = 0;
  220. return allocated_memory;
  221. }
  222. static void free_vector_buffer_on_node(void *data_interface, unsigned node)
  223. {
  224. struct starpu_vector_interface *vector_interface = (struct starpu_vector_interface *) data_interface;
  225. uint32_t nx = vector_interface->nx;
  226. size_t elemsize = vector_interface->elemsize;
  227. starpu_free_on_node(node, vector_interface->dev_handle, nx*elemsize);
  228. }
  229. static int copy_any_to_any(void *src_interface, unsigned src_node,
  230. void *dst_interface, unsigned dst_node, void *async_data)
  231. {
  232. struct starpu_vector_interface *src_vector = src_interface;
  233. struct starpu_vector_interface *dst_vector = dst_interface;
  234. int ret;
  235. ret = starpu_interface_copy(src_vector->dev_handle, src_vector->offset, src_node,
  236. dst_vector->dev_handle, dst_vector->offset, dst_node,
  237. src_vector->nx*src_vector->elemsize, async_data);
  238. _STARPU_TRACE_DATA_COPY(src_node, dst_node, src_vector->nx*src_vector->elemsize);
  239. return ret;
  240. }
  241. static starpu_ssize_t describe(void *data_interface, char *buf, size_t size)
  242. {
  243. struct starpu_vector_interface *vector = (struct starpu_vector_interface *) data_interface;
  244. return snprintf(buf, size, "V%ux%u",
  245. (unsigned) vector->nx,
  246. (unsigned) vector->elemsize);
  247. }