basic-api.texi 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. @c -*-texinfo-*-
  2. @c This file is part of the StarPU Handbook.
  3. @c Copyright (C) 2009--2011 Universit@'e de Bordeaux 1
  4. @c Copyright (C) 2010, 2011, 2012 Centre National de la Recherche Scientifique
  5. @c Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
  6. @c See the file starpu.texi for copying conditions.
  7. @menu
  8. * Initialization and Termination:: Initialization and Termination methods
  9. * Workers' Properties:: Methods to enumerate workers' properties
  10. * Data Library:: Methods to manipulate data
  11. * Data Interfaces::
  12. * Data Partition::
  13. * Codelets and Tasks:: Methods to construct tasks
  14. * Explicit Dependencies:: Explicit Dependencies
  15. * Implicit Data Dependencies:: Implicit Data Dependencies
  16. * Performance Model API::
  17. * Profiling API:: Profiling API
  18. * CUDA extensions:: CUDA extensions
  19. * OpenCL extensions:: OpenCL extensions
  20. * Cell extensions:: Cell extensions
  21. * Miscellaneous helpers::
  22. @end menu
  23. @node Initialization and Termination
  24. @section Initialization and Termination
  25. @deftypefun int starpu_init ({struct starpu_conf *}@var{conf})
  26. This is StarPU initialization method, which must be called prior to any other
  27. StarPU call. It is possible to specify StarPU's configuration (e.g. scheduling
  28. policy, number of cores, ...) by passing a non-null argument. Default
  29. configuration is used if the passed argument is @code{NULL}.
  30. Upon successful completion, this function returns 0. Otherwise, @code{-ENODEV}
  31. indicates that no worker was available (so that StarPU was not initialized).
  32. @end deftypefun
  33. @deftp {Data Type} {struct starpu_conf}
  34. This structure is passed to the @code{starpu_init} function in order
  35. to configure StarPU.
  36. When the default value is used, StarPU automatically selects the number
  37. of processing units and takes the default scheduling policy. This parameter
  38. overwrites the equivalent environment variables.
  39. @table @asis
  40. @item @code{sched_policy_name} (default = NULL)
  41. This is the name of the scheduling policy. This can also be specified
  42. with the @code{STARPU_SCHED} environment variable.
  43. @item @code{sched_policy} (default = NULL)
  44. This is the definition of the scheduling policy. This field is ignored
  45. if @code{sched_policy_name} is set.
  46. @item @code{ncpus} (default = -1)
  47. This is the number of CPU cores that StarPU can use. This can also be
  48. specified with the @code{STARPU_NCPUS} environment variable.
  49. @item @code{ncuda} (default = -1)
  50. This is the number of CUDA devices that StarPU can use. This can also
  51. be specified with the @code{STARPU_NCUDA} environment variable.
  52. @item @code{nopencl} (default = -1)
  53. This is the number of OpenCL devices that StarPU can use. This can
  54. also be specified with the @code{STARPU_NOPENCL} environment variable.
  55. @item @code{nspus} (default = -1)
  56. This is the number of Cell SPUs that StarPU can use. This can also be
  57. specified with the @code{STARPU_NGORDON} environment variable.
  58. @item @code{use_explicit_workers_bindid} (default = 0)
  59. If this flag is set, the @code{workers_bindid} array indicates where
  60. the different workers are bound, otherwise StarPU automatically
  61. selects where to bind the different workers unless the
  62. @code{STARPU_WORKERS_CPUID} environment variable is set. The
  63. @code{STARPU_WORKERS_CPUID} environment variable is ignored if the
  64. @code{use_explicit_workers_bindid} flag is set.
  65. @item @code{workers_bindid[STARPU_NMAXWORKERS]}
  66. If the @code{use_explicit_workers_bindid} flag is set, this array
  67. indicates where to bind the different workers. The i-th entry of the
  68. @code{workers_bindid} indicates the logical identifier of the
  69. processor which should execute the i-th worker. Note that the logical
  70. ordering of the CPUs is either determined by the OS, or provided by
  71. the @code{hwloc} library in case it is available. When this flag is
  72. set, the @ref{STARPU_WORKERS_CPUID} environment variable is ignored.
  73. @item @code{use_explicit_workers_cuda_gpuid} (default = 0)
  74. If this flag is set, the CUDA workers will be attached to the CUDA
  75. devices specified in the @code{workers_cuda_gpuid} array. Otherwise,
  76. StarPU affects the CUDA devices in a round-robin fashion. When this
  77. flag is set, the @ref{STARPU_WORKERS_CUDAID} environment variable is
  78. ignored.
  79. @item @code{workers_cuda_gpuid[STARPU_NMAXWORKERS]}
  80. If the @code{use_explicit_workers_cuda_gpuid} flag is set, this array
  81. contains the logical identifiers of the CUDA devices (as used by
  82. @code{cudaGetDevice}).
  83. @item @code{use_explicit_workers_opencl_gpuid} (default = 0)
  84. If this flag is set, the OpenCL workers will be attached to the OpenCL
  85. devices specified in the @code{workers_opencl_gpuid} array. Otherwise,
  86. StarPU affects the OpenCL devices in a round-robin fashion.
  87. @item @code{workers_opencl_gpuid[STARPU_NMAXWORKERS]}
  88. todo
  89. @item @code{calibrate} (default = 0)
  90. If this flag is set, StarPU will calibrate the performance models when
  91. executing tasks. If this value is equal to -1, the default value is
  92. used. The default value is overwritten by the @code{STARPU_CALIBRATE}
  93. environment variable when it is set.
  94. @item @code{single_combined_worker} (default = 0)
  95. By default, StarPU creates various combined workers according to the machine
  96. structure. Some parallel libraries (e.g. most OpenMP implementations) however do
  97. not support concurrent calls to parallel code. In such case, setting this flag
  98. makes StarPU only create one combined worker, containing all
  99. the CPU workers. The default value is overwritten by the
  100. @code{STARPU_SINGLE_COMBINED_WORKER} environment variable when it is set.
  101. @end table
  102. @end deftp
  103. @deftypefun int starpu_conf_init ({struct starpu_conf *}@var{conf})
  104. This function initializes the @var{conf} structure passed as argument
  105. with the default values. In case some configuration parameters are already
  106. specified through environment variables, @code{starpu_conf_init} initializes
  107. the fields of the structure according to the environment variables. For
  108. instance if @code{STARPU_CALIBRATE} is set, its value is put in the
  109. @code{.ncuda} field of the structure passed as argument.
  110. Upon successful completion, this function returns 0. Otherwise, @code{-EINVAL}
  111. indicates that the argument was NULL.
  112. @end deftypefun
  113. @deftypefun void starpu_shutdown (void)
  114. This is StarPU termination method. It must be called at the end of the
  115. application: statistics and other post-mortem debugging information are not
  116. guaranteed to be available until this method has been called.
  117. @end deftypefun
  118. @node Workers' Properties
  119. @section Workers' Properties
  120. @deftp {Data Type} {enum starpu_archtype}
  121. The different values are:
  122. @table @asis
  123. @item @code{STARPU_CPU_WORKER}
  124. @item @code{STARPU_CUDA_WORKER}
  125. @item @code{STARPU_OPENCL_WORKER}
  126. @item @code{STARPU_GORDON_WORKER}
  127. @end table
  128. @end deftp
  129. @deftypefun unsigned starpu_worker_get_count (void)
  130. This function returns the number of workers (i.e. processing units executing
  131. StarPU tasks). The returned value should be at most @code{STARPU_NMAXWORKERS}.
  132. @end deftypefun
  133. @deftypefun int starpu_worker_get_count_by_type ({enum starpu_archtype} @var{type})
  134. Returns the number of workers of the given type indicated by the argument. A positive
  135. (or null) value is returned in case of success, @code{-EINVAL} indicates that
  136. the type is not valid otherwise.
  137. @end deftypefun
  138. @deftypefun unsigned starpu_cpu_worker_get_count (void)
  139. This function returns the number of CPUs controlled by StarPU. The returned
  140. value should be at most @code{STARPU_MAXCPUS}.
  141. @end deftypefun
  142. @deftypefun unsigned starpu_cuda_worker_get_count (void)
  143. This function returns the number of CUDA devices controlled by StarPU. The returned
  144. value should be at most @code{STARPU_MAXCUDADEVS}.
  145. @end deftypefun
  146. @deftypefun unsigned starpu_opencl_worker_get_count (void)
  147. This function returns the number of OpenCL devices controlled by StarPU. The returned
  148. value should be at most @code{STARPU_MAXOPENCLDEVS}.
  149. @end deftypefun
  150. @deftypefun unsigned starpu_spu_worker_get_count (void)
  151. This function returns the number of Cell SPUs controlled by StarPU.
  152. @end deftypefun
  153. @deftypefun int starpu_worker_get_id (void)
  154. This function returns the identifier of the current worker, i.e the one associated to the calling
  155. thread. The returned value is either -1 if the current context is not a StarPU
  156. worker (i.e. when called from the application outside a task or a callback), or
  157. an integer between 0 and @code{starpu_worker_get_count() - 1}.
  158. @end deftypefun
  159. @deftypefun int starpu_worker_get_ids_by_type ({enum starpu_archtype} @var{type}, int *@var{workerids}, int @var{maxsize})
  160. This function gets the list of identifiers of workers with the given
  161. type. It fills the workerids array with the identifiers of the workers that have the type
  162. indicated in the first argument. The maxsize argument indicates the size of the
  163. workids array. The returned value gives the number of identifiers that were put
  164. in the array. @code{-ERANGE} is returned is maxsize is lower than the number of
  165. workers with the appropriate type: in that case, the array is filled with the
  166. maxsize first elements. To avoid such overflows, the value of maxsize can be
  167. chosen by the means of the @code{starpu_worker_get_count_by_type} function, or
  168. by passing a value greater or equal to @code{STARPU_NMAXWORKERS}.
  169. @end deftypefun
  170. @deftypefun int starpu_worker_get_devid (int @var{id})
  171. This functions returns the device id of the given worker. The worker
  172. should be identified with the value returned by the @code{starpu_worker_get_id} function. In the case of a
  173. CUDA worker, this device identifier is the logical device identifier exposed by
  174. CUDA (used by the @code{cudaGetDevice} function for instance). The device
  175. identifier of a CPU worker is the logical identifier of the core on which the
  176. worker was bound; this identifier is either provided by the OS or by the
  177. @code{hwloc} library in case it is available.
  178. @end deftypefun
  179. @deftypefun {enum starpu_archtype} starpu_worker_get_type (int @var{id})
  180. This function returns the type of processing unit associated to a
  181. worker. The worker identifier is a value returned by the
  182. @code{starpu_worker_get_id} function). The returned value
  183. indicates the architecture of the worker: @code{STARPU_CPU_WORKER} for a CPU
  184. core, @code{STARPU_CUDA_WORKER} for a CUDA device,
  185. @code{STARPU_OPENCL_WORKER} for a OpenCL device, and
  186. @code{STARPU_GORDON_WORKER} for a Cell SPU. The value returned for an invalid
  187. identifier is unspecified.
  188. @end deftypefun
  189. @deftypefun void starpu_worker_get_name (int @var{id}, char *@var{dst}, size_t @var{maxlen})
  190. This function allows to get the name of a given worker.
  191. StarPU associates a unique human readable string to each processing unit. This
  192. function copies at most the @var{maxlen} first bytes of the unique string
  193. associated to a worker identified by its identifier @var{id} into the
  194. @var{dst} buffer. The caller is responsible for ensuring that the @var{dst}
  195. is a valid pointer to a buffer of @var{maxlen} bytes at least. Calling this
  196. function on an invalid identifier results in an unspecified behaviour.
  197. @end deftypefun
  198. @deftypefun unsigned starpu_worker_get_memory_node (unsigned @var{workerid})
  199. This function returns the identifier of the memory node associated to the
  200. worker identified by @var{workerid}.
  201. @end deftypefun
  202. @node Data Library
  203. @section Data Library
  204. @menu
  205. * Introduction to Data Library::
  206. * Basic Data Library API::
  207. * Access registered data from the application::
  208. @end menu
  209. This section describes the data management facilities provided by StarPU.
  210. We show how to use existing data interfaces in @ref{Data Interfaces}, but developers can
  211. design their own data interfaces if required.
  212. @node Introduction to Data Library
  213. @subsection Introduction
  214. Data management is done at a high-level in StarPU: rather than accessing a mere
  215. list of contiguous buffers, the tasks may manipulate data that are described by
  216. a high-level construct which we call data interface.
  217. An example of data interface is the "vector" interface which describes a
  218. contiguous data array on a spefic memory node. This interface is a simple
  219. structure containing the number of elements in the array, the size of the
  220. elements, and the address of the array in the appropriate address space (this
  221. address may be invalid if there is no valid copy of the array in the memory
  222. node). More informations on the data interfaces provided by StarPU are
  223. given in @ref{Data Interfaces}.
  224. When a piece of data managed by StarPU is used by a task, the task
  225. implementation is given a pointer to an interface describing a valid copy of
  226. the data that is accessible from the current processing unit.
  227. Every worker is associated to a memory node which is a logical abstraction of
  228. the address space from which the processing unit gets its data. For instance,
  229. the memory node associated to the different CPU workers represents main memory
  230. (RAM), the memory node associated to a GPU is DRAM embedded on the device.
  231. Every memory node is identified by a logical index which is accessible from the
  232. @code{starpu_worker_get_memory_node} function. When registering a piece of data
  233. to StarPU, the specified memory node indicates where the piece of data
  234. initially resides (we also call this memory node the home node of a piece of
  235. data).
  236. @node Basic Data Library API
  237. @subsection Basic Data Library API
  238. @deftypefun int starpu_malloc (void **@var{A}, size_t @var{dim})
  239. This function allocates data of the given size in main memory. It will also try to pin it in
  240. CUDA or OpenCL, so that data transfers from this buffer can be asynchronous, and
  241. thus permit data transfer and computation overlapping. The allocated buffer must
  242. be freed thanks to the @code{starpu_free} function.
  243. @end deftypefun
  244. @deftypefun int starpu_free (void *@var{A})
  245. This function frees memory which has previously allocated with
  246. @code{starpu_malloc}.
  247. @end deftypefun
  248. @deftp {Data Type} {enum starpu_access_mode}
  249. This datatype describes a data access mode. The different available modes are:
  250. @table @asis
  251. @item @code{STARPU_R}: read-only mode.
  252. @item @code{STARPU_W}: write-only mode.
  253. @item @code{STARPU_RW}: read-write mode. This is equivalent to @code{STARPU_R|STARPU_W}.
  254. @item @code{STARPU_SCRATCH}: scratch memory. A temporary buffer is allocated for the task, but StarPU does not enforce data consistency, i.e. each device has its own buffer, independently from each other (even for CPUs). This is useful for temporary variables. For now, no behaviour is defined concerning the relation with STARPU_R/W modes and the value provided at registration, i.e. the value of the scratch buffer is undefined at entry of the codelet function, but this is being considered for future extensions.
  255. @item @code{STARPU_REDUX} reduction mode.
  256. @end table
  257. @end deftp
  258. @deftp {Data Type} {starpu_data_handle_t}
  259. StarPU uses @code{starpu_data_handle_t} as an opaque handle to manage a piece of
  260. data. Once a piece of data has been registered to StarPU, it is associated to a
  261. @code{starpu_data_handle_t} which keeps track of the state of the piece of data
  262. over the entire machine, so that we can maintain data consistency and locate
  263. data replicates for instance.
  264. @end deftp
  265. @deftypefun void starpu_data_register (starpu_data_handle_t *@var{handleptr}, uint32_t @var{home_node}, void *@var{data_interface}, {struct starpu_data_interface_ops} *@var{ops})
  266. Register a piece of data into the handle located at the @var{handleptr}
  267. address. The @var{data_interface} buffer contains the initial description of the
  268. data in the home node. The @var{ops} argument is a pointer to a structure
  269. describing the different methods used to manipulate this type of interface. See
  270. @ref{struct starpu_data_interface_ops} for more details on this structure.
  271. If @code{home_node} is -1, StarPU will automatically
  272. allocate the memory when it is used for the
  273. first time in write-only mode. Once such data handle has been automatically
  274. allocated, it is possible to access it using any access mode.
  275. Note that StarPU supplies a set of predefined types of interface (e.g. vector or
  276. matrix) which can be registered by the means of helper functions (e.g.
  277. @code{starpu_vector_data_register} or @code{starpu_matrix_data_register}).
  278. @end deftypefun
  279. @deftypefun void starpu_data_unregister (starpu_data_handle_t @var{handle})
  280. This function unregisters a data handle from StarPU. If the data was
  281. automatically allocated by StarPU because the home node was -1, all
  282. automatically allocated buffers are freed. Otherwise, a valid copy of the data
  283. is put back into the home node in the buffer that was initially registered.
  284. Using a data handle that has been unregistered from StarPU results in an
  285. undefined behaviour.
  286. @end deftypefun
  287. @deftypefun void starpu_data_unregister_no_coherency (starpu_data_handle_t @var{handle})
  288. This is the same as starpu_data_unregister, except that StarPU does not put back
  289. a valid copy into the home node, in the buffer that was initially registered.
  290. @end deftypefun
  291. @deftypefun void starpu_data_invalidate (starpu_data_handle_t @var{handle})
  292. Destroy all replicates of the data handle. After data invalidation, the first
  293. access to the handle must be performed in write-only mode. Accessing an
  294. invalidated data in read-mode results in undefined behaviour.
  295. @end deftypefun
  296. @c TODO create a specific sections about user interaction with the DSM ?
  297. @deftypefun void starpu_data_set_wt_mask (starpu_data_handle_t @var{handle}, uint32_t @var{wt_mask})
  298. This function sets the write-through mask of a given data, i.e. a bitmask of
  299. nodes where the data should be always replicated after modification.
  300. @end deftypefun
  301. @deftypefun int starpu_data_prefetch_on_node (starpu_data_handle_t @var{handle}, unsigned @var{node}, unsigned @var{async})
  302. Issue a prefetch request for a given data to a given node, i.e.
  303. requests that the data be replicated to the given node, so that it is available
  304. there for tasks. If the @var{async} parameter is 0, the call will block until
  305. the transfer is achieved, else the call will return as soon as the request is
  306. scheduled (which may however have to wait for a task completion).
  307. @end deftypefun
  308. @deftypefun starpu_data_handle_t starpu_data_lookup ({const void *}@var{ptr})
  309. Return the handle associated to ptr @var{ptr}.
  310. @end deftypefun
  311. @deftypefun int starpu_data_request_allocation (starpu_data_handle_t @var{handle}, uint32_t @var{node})
  312. Explicitly ask StarPU to allocate room for a piece of data on the specified
  313. memory node.
  314. @end deftypefun
  315. @deftypefun void starpu_data_query_status (starpu_data_handle_t @var{handle}, int @var{memory_node}, {int *}@var{is_allocated}, {int *}@var{is_valid}, {int *}@var{is_requested})
  316. Query the status of the handle on the specified memory node.
  317. @end deftypefun
  318. @deftypefun void starpu_data_advise_as_important (starpu_data_handle_t @var{handle}, unsigned @var{is_important})
  319. This function allows to specify that a piece of data can be discarded
  320. without impacting the application.
  321. @end deftypefun
  322. @deftypefun void starpu_data_set_reduction_methods (starpu_data_handle_t @var{handle}, {struct starpu_codelet *}@var{redux_cl}, {struct starpu_codelet *}@var{init_cl})
  323. todo
  324. @end deftypefun
  325. @node Access registered data from the application
  326. @subsection Access registered data from the application
  327. @deftypefun int starpu_data_acquire (starpu_data_handle_t @var{handle}, {enum starpu_access_mode} @var{mode})
  328. The application must call this function prior to accessing registered data from
  329. main memory outside tasks. StarPU ensures that the application will get an
  330. up-to-date copy of the data in main memory located where the data was
  331. originally registered, and that all concurrent accesses (e.g. from tasks) will
  332. be consistent with the access mode specified in the @var{mode} argument.
  333. @code{starpu_data_release} must be called once the application does not need to
  334. access the piece of data anymore. Note that implicit data
  335. dependencies are also enforced by @code{starpu_data_acquire}, i.e.
  336. @code{starpu_data_acquire} will wait for all tasks scheduled to work on
  337. the data, unless that they have not been disabled explictly by calling
  338. @code{starpu_data_set_default_sequential_consistency_flag} or
  339. @code{starpu_data_set_sequential_consistency_flag}.
  340. @code{starpu_data_acquire} is a blocking call, so that it cannot be called from
  341. tasks or from their callbacks (in that case, @code{starpu_data_acquire} returns
  342. @code{-EDEADLK}). Upon successful completion, this function returns 0.
  343. @end deftypefun
  344. @deftypefun int starpu_data_acquire_cb (starpu_data_handle_t @var{handle}, {enum starpu_access_mode} @var{mode}, void (*@var{callback})(void *), void *@var{arg})
  345. @code{starpu_data_acquire_cb} is the asynchronous equivalent of
  346. @code{starpu_data_release}. When the data specified in the first argument is
  347. available in the appropriate access mode, the callback function is executed.
  348. The application may access the requested data during the execution of this
  349. callback. The callback function must call @code{starpu_data_release} once the
  350. application does not need to access the piece of data anymore.
  351. Note that implicit data dependencies are also enforced by
  352. @code{starpu_data_acquire_cb} in case they are enabled.
  353. Contrary to @code{starpu_data_acquire}, this function is non-blocking and may
  354. be called from task callbacks. Upon successful completion, this function
  355. returns 0.
  356. @end deftypefun
  357. @defmac STARPU_DATA_ACQUIRE_CB (starpu_data_handle_t @var{handle}, {enum starpu_access_mode} @var{mode}, code)
  358. @code{STARPU_DATA_ACQUIRE_CB} is the same as @code{starpu_data_acquire_cb},
  359. except that the code to be executed in a callback is directly provided as a
  360. macro parameter, and the data handle is automatically released after it. This
  361. permits to easily execute code which depends on the value of some registered
  362. data. This is non-blocking too and may be called from task callbacks.
  363. @end defmac
  364. @deftypefun void starpu_data_release (starpu_data_handle_t @var{handle})
  365. This function releases the piece of data acquired by the application either by
  366. @code{starpu_data_acquire} or by @code{starpu_data_acquire_cb}.
  367. @end deftypefun
  368. @node Data Interfaces
  369. @section Data Interfaces
  370. @menu
  371. * Registering Data::
  372. * Accessing Data Interfaces::
  373. @end menu
  374. @node Registering Data
  375. @subsection Registering Data
  376. There are several ways to register a memory region so that it can be managed by
  377. StarPU. The functions below allow the registration of vectors, 2D matrices, 3D
  378. matrices as well as BCSR and CSR sparse matrices.
  379. @deftypefun void starpu_void_data_register ({starpu_data_handle_t *}@var{handle})
  380. Register a void interface. There is no data really associated to that
  381. interface, but it may be used as a synchronization mechanism. It also
  382. permits to express an abstract piece of data that is managed by the
  383. application internally: this makes it possible to forbid the
  384. concurrent execution of different tasks accessing the same "void" data
  385. in read-write concurrently.
  386. @end deftypefun
  387. @deftypefun void starpu_variable_data_register ({starpu_data_handle_t *}@var{handle}, uint32_t @var{home_node}, uintptr_t @var{ptr}, size_t @var{size})
  388. Register the @var{size}-byte element pointed to by @var{ptr}, which is
  389. typically a scalar, and initialize @var{handle} to represent this data
  390. item.
  391. @cartouche
  392. @smallexample
  393. float var;
  394. starpu_data_handle_t var_handle;
  395. starpu_variable_data_register(&var_handle, 0, (uintptr_t)&var, sizeof(var));
  396. @end smallexample
  397. @end cartouche
  398. @end deftypefun
  399. @deftypefun void starpu_vector_data_register ({starpu_data_handle_t *}@var{handle}, uint32_t @var{home_node}, uintptr_t @var{ptr}, uint32_t @var{nx}, size_t @var{elemsize})
  400. Register the @var{nx} @var{elemsize}-byte elements pointed to by
  401. @var{ptr} and initialize @var{handle} to represent it.
  402. @cartouche
  403. @smallexample
  404. float vector[NX];
  405. starpu_data_handle_t vector_handle;
  406. starpu_vector_data_register(&vector_handle, 0, (uintptr_t)vector, NX,
  407. sizeof(vector[0]));
  408. @end smallexample
  409. @end cartouche
  410. @end deftypefun
  411. @deftypefun void starpu_matrix_data_register ({starpu_data_handle_t *}@var{handle}, uint32_t @var{home_node}, uintptr_t @var{ptr}, uint32_t @var{ld}, uint32_t @var{nx}, uint32_t @var{ny}, size_t @var{elemsize})
  412. Register the @var{nx}x@var{ny} 2D matrix of @var{elemsize}-byte elements
  413. pointed by @var{ptr} and initialize @var{handle} to represent it.
  414. @var{ld} specifies the number of extra elements present at the end of
  415. each row; a non-zero @var{ld} adds padding, which can be useful for
  416. alignment purposes.
  417. @cartouche
  418. @smallexample
  419. float *matrix;
  420. starpu_data_handle_t matrix_handle;
  421. matrix = (float*)malloc(width * height * sizeof(float));
  422. starpu_matrix_data_register(&matrix_handle, 0, (uintptr_t)matrix,
  423. width, width, height, sizeof(float));
  424. @end smallexample
  425. @end cartouche
  426. @end deftypefun
  427. @deftypefun void starpu_block_data_register ({starpu_data_handle_t *}@var{handle}, uint32_t @var{home_node}, uintptr_t @var{ptr}, uint32_t @var{ldy}, uint32_t @var{ldz}, uint32_t @var{nx}, uint32_t @var{ny}, uint32_t @var{nz}, size_t @var{elemsize})
  428. Register the @var{nx}x@var{ny}x@var{nz} 3D matrix of @var{elemsize}-byte
  429. elements pointed by @var{ptr} and initialize @var{handle} to represent
  430. it. Again, @var{ldy} and @var{ldz} specify the number of extra elements
  431. present at the end of each row or column.
  432. @cartouche
  433. @smallexample
  434. float *block;
  435. starpu_data_handle_t block_handle;
  436. block = (float*)malloc(nx*ny*nz*sizeof(float));
  437. starpu_block_data_register(&block_handle, 0, (uintptr_t)block,
  438. nx, nx*ny, nx, ny, nz, sizeof(float));
  439. @end smallexample
  440. @end cartouche
  441. @end deftypefun
  442. @deftypefun void starpu_bcsr_data_register (starpu_data_handle_t *@var{handle}, uint32_t @var{home_node}, uint32_t @var{nnz}, uint32_t @var{nrow}, uintptr_t @var{nzval}, uint32_t *@var{colind}, uint32_t *@var{rowptr}, uint32_t @var{firstentry}, uint32_t @var{r}, uint32_t @var{c}, size_t @var{elemsize})
  443. This variant of @code{starpu_data_register} uses the BCSR (Blocked
  444. Compressed Sparse Row Representation) sparse matrix interface.
  445. TODO
  446. @end deftypefun
  447. @deftypefun void starpu_csr_data_register (starpu_data_handle_t *@var{handle}, uint32_t @var{home_node}, uint32_t @var{nnz}, uint32_t @var{nrow}, uintptr_t @var{nzval}, uint32_t *@var{colind}, uint32_t *@var{rowptr}, uint32_t @var{firstentry}, size_t @var{elemsize})
  448. This variant of @code{starpu_data_register} uses the CSR (Compressed
  449. Sparse Row Representation) sparse matrix interface.
  450. TODO
  451. @end deftypefun
  452. @deftypefun {void *} starpu_data_get_interface_on_node (starpu_data_handle_t @var{handle}, unsigned @var{memory_node})
  453. Return the interface associated with @var{handle} on @var{memory_node}.
  454. @end deftypefun
  455. @node Accessing Data Interfaces
  456. @subsection Accessing Data Interfaces
  457. Each data interface is provided with a set of field access functions.
  458. The ones using a @code{void *} parameter aimed to be used in codelet
  459. implementations (see for example the code in @ref{Source code of Vector Scaling}).
  460. @deftp {Data Type} {enum starpu_data_interface_id}
  461. The different values are:
  462. @table @asis
  463. @item @code{STARPU_MATRIX_INTERFACE_ID}
  464. @item @code{STARPU_BLOCK_INTERFACE_ID}
  465. @item @code{STARPU_VECTOR_INTERFACE_ID}
  466. @item @code{STARPU_CSR_INTERFACE_ID}
  467. @item @code{STARPU_BCSR_INTERFACE_ID}
  468. @item @code{STARPU_VARIABLE_INTERFACE_ID}
  469. @item @code{STARPU_VOID_INTERFACE_ID}
  470. @item @code{STARPU_MULTIFORMAT_INTERFACE_ID}
  471. @item @code{STARPU_NINTERFACES_ID}: number of data interfaces
  472. @end table
  473. @end deftp
  474. @menu
  475. * Accessing Handle::
  476. * Accessing Variable Data Interfaces::
  477. * Accessing Vector Data Interfaces::
  478. * Accessing Matrix Data Interfaces::
  479. * Accessing Block Data Interfaces::
  480. * Accessing BCSR Data Interfaces::
  481. * Accessing CSR Data Interfaces::
  482. @end menu
  483. @node Accessing Handle
  484. @subsubsection Handle
  485. @deftypefun {void *} starpu_handle_to_pointer (starpu_data_handle_t @var{handle}, uint32_t @var{node})
  486. Return the pointer associated with @var{handle} on node @var{node} or
  487. @code{NULL} if @var{handle}'s interface does not support this
  488. operation or data for this handle is not allocated on that node.
  489. @end deftypefun
  490. @deftypefun {void *} starpu_handle_get_local_ptr (starpu_data_handle_t @var{handle})
  491. Return the local pointer associated with @var{handle} or @code{NULL}
  492. if @var{handle}'s interface does not have data allocated locally
  493. @end deftypefun
  494. @deftypefun {enum starpu_data_interface_id} starpu_handle_get_interface_id (starpu_data_handle_t @var{handle})
  495. Return the unique identifier of the interface associated with the given @var{handle}.
  496. @end deftypefun
  497. @node Accessing Variable Data Interfaces
  498. @subsubsection Variable Data Interfaces
  499. @deftypefun size_t starpu_variable_get_elemsize (starpu_data_handle_t @var{handle})
  500. Return the size of the variable designated by @var{handle}.
  501. @end deftypefun
  502. @deftypefun uintptr_t starpu_variable_get_local_ptr (starpu_data_handle_t @var{handle})
  503. Return a pointer to the variable designated by @var{handle}.
  504. @end deftypefun
  505. @defmac STARPU_VARIABLE_GET_PTR ({void *}@var{interface})
  506. Return a pointer to the variable designated by @var{interface}.
  507. @end defmac
  508. @defmac STARPU_VARIABLE_GET_ELEMSIZE ({void *}@var{interface})
  509. Return the size of the variable designated by @var{interface}.
  510. @end defmac
  511. @node Accessing Vector Data Interfaces
  512. @subsubsection Vector Data Interfaces
  513. @deftypefun uint32_t starpu_vector_get_nx (starpu_data_handle_t @var{handle})
  514. Return the number of elements registered into the array designated by @var{handle}.
  515. @end deftypefun
  516. @deftypefun size_t starpu_vector_get_elemsize (starpu_data_handle_t @var{handle})
  517. Return the size of each element of the array designated by @var{handle}.
  518. @end deftypefun
  519. @deftypefun uintptr_t starpu_vector_get_local_ptr (starpu_data_handle_t @var{handle})
  520. Return the local pointer associated with @var{handle}.
  521. @end deftypefun
  522. @defmac STARPU_VECTOR_GET_PTR ({void *}@var{interface})
  523. Return a pointer to the array designated by @var{interface}, valid on CPUs and
  524. CUDA only. For OpenCL, the device handle and offset need to be used instead.
  525. @end defmac
  526. @defmac STARPU_VECTOR_GET_DEV_HANDLE ({void *}@var{interface})
  527. Return a device handle for the array designated by @var{interface}, to be used on OpenCL. the offset
  528. documented below has to be used in addition to this.
  529. @end defmac
  530. @defmac STARPU_VECTOR_GET_OFFSET ({void *}@var{interface})
  531. Return the offset in the array designated by @var{interface}, to be used with the device handle.
  532. @end defmac
  533. @defmac STARPU_VECTOR_GET_NX ({void *}@var{interface})
  534. Return the number of elements registered into the array designated by @var{interface}.
  535. @end defmac
  536. @defmac STARPU_VECTOR_GET_ELEMSIZE ({void *}@var{interface})
  537. Return the size of each element of the array designated by @var{interface}.
  538. @end defmac
  539. @node Accessing Matrix Data Interfaces
  540. @subsubsection Matrix Data Interfaces
  541. @deftypefun uint32_t starpu_matrix_get_nx (starpu_data_handle_t @var{handle})
  542. Return the number of elements on the x-axis of the matrix designated by @var{handle}.
  543. @end deftypefun
  544. @deftypefun uint32_t starpu_matrix_get_ny (starpu_data_handle_t @var{handle})
  545. Return the number of elements on the y-axis of the matrix designated by
  546. @var{handle}.
  547. @end deftypefun
  548. @deftypefun uint32_t starpu_matrix_get_local_ld (starpu_data_handle_t @var{handle})
  549. Return the number of extra elements present at the end of each row of the
  550. matrix designated by @var{handle}.
  551. @end deftypefun
  552. @deftypefun uintptr_t starpu_matrix_get_local_ptr (starpu_data_handle_t @var{handle})
  553. Return the local pointer associated with @var{handle}.
  554. @end deftypefun
  555. @deftypefun size_t starpu_matrix_get_elemsize (starpu_data_handle_t @var{handle})
  556. Return the size of the elements registered into the matrix designated by
  557. @var{handle}.
  558. @end deftypefun
  559. @defmac STARPU_MATRIX_GET_PTR ({void *}@var{interface})
  560. Return a pointer to the matrix designated by @var{interface}, valid on CPUs and
  561. CUDA devices only. For OpenCL devices, the device handle and offset need to be
  562. used instead.
  563. @end defmac
  564. @defmac STARPU_MATRIX_GET_DEV_HANDLE ({void *}@var{interface})
  565. Return a device handle for the matrix designated by @var{interface}, to be used
  566. on OpenCL. The offset documented below has to be used in addition to this.
  567. @end defmac
  568. @defmac STARPU_MATRIX_GET_OFFSET ({void *}@var{interface})
  569. Return the offset in the matrix designated by @var{interface}, to be used with
  570. the device handle.
  571. @end defmac
  572. @defmac STARPU_MATRIX_GET_NX ({void *}@var{interface})
  573. Return the number of elements on the x-axis of the matrix designated by
  574. @var{interface}.
  575. @end defmac
  576. @defmac STARPU_MATRIX_GET_NY ({void *}@var{interface})
  577. Return the number of elements on the y-axis of the matrix designated by
  578. @var{interface}.
  579. @end defmac
  580. @defmac STARPU_MATRIX_GET_LD ({void *}@var{interface})
  581. Return the number of extra elements present at the end of each row of the
  582. matrix designated by @var{interface}.
  583. @end defmac
  584. @defmac STARPU_MATRIX_GET_ELEMSIZE ({void *}@var{interface})
  585. Return the size of the elements registered into the matrix designated by
  586. @var{interface}.
  587. @end defmac
  588. @node Accessing Block Data Interfaces
  589. @subsubsection Block Data Interfaces
  590. @deftypefun uint32_t starpu_block_get_nx (starpu_data_handle_t @var{handle})
  591. Return the number of elements on the x-axis of the block designated by @var{handle}.
  592. @end deftypefun
  593. @deftypefun uint32_t starpu_block_get_ny (starpu_data_handle_t @var{handle})
  594. Return the number of elements on the y-axis of the block designated by @var{handle}.
  595. @end deftypefun
  596. @deftypefun uint32_t starpu_block_get_nz (starpu_data_handle_t @var{handle})
  597. Return the number of elements on the z-axis of the block designated by @var{handle}.
  598. @end deftypefun
  599. @deftypefun uint32_t starpu_block_get_local_ldy (starpu_data_handle_t @var{handle})
  600. todo
  601. @end deftypefun
  602. @deftypefun uint32_t starpu_block_get_local_ldz (starpu_data_handle_t @var{handle})
  603. todo
  604. @end deftypefun
  605. @deftypefun uintptr_t starpu_block_get_local_ptr (starpu_data_handle_t @var{handle})
  606. Return the local pointer associated with @var{handle}.
  607. @end deftypefun
  608. @deftypefun size_t starpu_block_get_elemsize (starpu_data_handle_t @var{handle})
  609. Return the size of the elements of the block designated by @var{handle}.
  610. @end deftypefun
  611. @defmac STARPU_BLOCK_GET_PTR ({void *}@var{interface})
  612. Return a pointer to the block designated by @var{interface}.
  613. @end defmac
  614. @defmac STARPU_BLOCK_GET_DEV_HANDLE ({void *}@var{interface})
  615. Return a device handle for the block designated by @var{interface}, to be used
  616. on OpenCL. The offset document below has to be used in addition to this.
  617. @end defmac
  618. @defmac STARPU_BLOCK_GET_OFFSET ({void *}@var{interface})
  619. Return the offset in the block designated by @var{interface}, to be used with
  620. the device handle.
  621. @end defmac
  622. @defmac STARPU_BLOCK_GET_NX ({void *}@var{interface})
  623. Return the number of elements on the x-axis of the block designated by @var{handle}.
  624. @end defmac
  625. @defmac STARPU_BLOCK_GET_NY ({void *}@var{interface})
  626. Return the number of elements on the y-axis of the block designated by @var{handle}.
  627. @end defmac
  628. @defmac STARPU_BLOCK_GET_NZ ({void *}@var{interface})
  629. Return the number of elements on the z-axis of the block designated by @var{handle}.
  630. @end defmac
  631. @defmac STARPU_BLOCK_GET_LDY ({void *}@var{interface})
  632. todo
  633. @end defmac
  634. @defmac STARPU_BLOCK_GET_LDZ ({void *}@var{interface})
  635. todo
  636. @end defmac
  637. @defmac STARPU_BLOCK_GET_ELEMSIZE ({void *}@var{interface})
  638. Return the size of the elements of the matrix designated by @var{interface}.
  639. @end defmac
  640. @node Accessing BCSR Data Interfaces
  641. @subsubsection BCSR Data Interfaces
  642. @deftypefun uint32_t starpu_bcsr_get_nnz (starpu_data_handle_t @var{handle})
  643. Return the number of non-zero elements in the matrix designated by @var{handle}.
  644. @end deftypefun
  645. @deftypefun uint32_t starpu_bcsr_get_nrow (starpu_data_handle_t @var{handle})
  646. Return the number of rows (in terms of blocks of size r*c) in the matrix
  647. designated by @var{handle}.
  648. @end deftypefun
  649. @deftypefun uint32_t starpu_bcsr_get_firstentry (starpu_data_handle_t @var{handle})
  650. Return the index at which all arrays (the column indexes, the row pointers...)
  651. of the matrix desginated by @var{handle} start.
  652. @end deftypefun
  653. @deftypefun uintptr_t starpu_bcsr_get_local_nzval (starpu_data_handle_t @var{handle})
  654. Return a pointer to the non-zero values of the matrix designated by @var{handle}.
  655. @end deftypefun
  656. @deftypefun {uint32_t *} starpu_bcsr_get_local_colind (starpu_data_handle_t @var{handle})
  657. Return a pointer to the column index, which holds the positions of the non-zero
  658. entries in the matrix designated by @var{handle}.
  659. @end deftypefun
  660. @deftypefun {uint32_t *} starpu_bcsr_get_local_rowptr (starpu_data_handle_t @var{handle})
  661. Return the row pointer array of the matrix designated by @var{handle}.
  662. @end deftypefun
  663. @deftypefun uint32_t starpu_bcsr_get_r (starpu_data_handle_t @var{handle})
  664. Return the number of rows in a block.
  665. @end deftypefun
  666. @deftypefun uint32_t starpu_bcsr_get_c (starpu_data_handle_t @var{handle})
  667. Return the numberof columns in a block.
  668. @end deftypefun
  669. @deftypefun size_t starpu_bcsr_get_elemsize (starpu_data_handle_t @var{handle})
  670. Return the size of the elements in the matrix designated by @var{handle}.
  671. @end deftypefun
  672. @node Accessing CSR Data Interfaces
  673. @subsubsection CSR Data Interfaces
  674. @deftypefun uint32_t starpu_csr_get_nnz (starpu_data_handle_t @var{handle})
  675. Return the number of non-zero values in the matrix designated by @var{handle}.
  676. @end deftypefun
  677. @deftypefun uint32_t starpu_csr_get_nrow (starpu_data_handle_t @var{handle})
  678. Return the size of the row pointer array of the matrix designated by @var{handle}.
  679. @end deftypefun
  680. @deftypefun uint32_t starpu_csr_get_firstentry (starpu_data_handle_t @var{handle})
  681. Return the index at which all arrays (the column indexes, the row pointers...)
  682. of the matrix designated by @var{handle} start.
  683. @end deftypefun
  684. @deftypefun uintptr_t starpu_csr_get_local_nzval (starpu_data_handle_t @var{handle})
  685. Return a local pointer to the non-zero values of the matrix designated by @var{handle}.
  686. @end deftypefun
  687. @deftypefun {uint32_t *} starpu_csr_get_local_colind (starpu_data_handle_t @var{handle})
  688. Return a local pointer to the column index of the matrix designated by @var{handle}.
  689. @end deftypefun
  690. @deftypefun {uint32_t *} starpu_csr_get_local_rowptr (starpu_data_handle_t @var{handle})
  691. Return a local pointer to the row pointer array of the matrix designated by @var{handle}.
  692. @end deftypefun
  693. @deftypefun size_t starpu_csr_get_elemsize (starpu_data_handle_t @var{handle})
  694. Return the size of the elements registered into the matrix designated by @var{handle}.
  695. @end deftypefun
  696. @defmac STARPU_CSR_GET_NNZ ({void *}@var{interface})
  697. Return the number of non-zero values in the matrix designated by @var{interface}.
  698. @end defmac
  699. @defmac STARPU_CSR_GET_NROW ({void *}@var{interface})
  700. Return the size of the row pointer array of the matrix designated by @var{interface}.
  701. @end defmac
  702. @defmac STARPU_CSR_GET_NZVAL ({void *}@var{interface})
  703. Return a pointer to the non-zero values of the matrix designated by @var{interface}.
  704. @end defmac
  705. @defmac STARPU_CSR_GET_COLIND ({void *}@var{interface})
  706. Return a pointer to the column index of the matrix designated by @var{interface}.
  707. @end defmac
  708. @defmac STARPU_CSR_GET_ROWPTR ({void *}@var{interface})
  709. Return a pointer to the row pointer array of the matrix designated by @var{interface}.
  710. @end defmac
  711. @defmac STARPU_CSR_GET_FIRSTENTRY ({void *}@var{interface})
  712. Return the index at which all arrays (the column indexes, the row pointers...)
  713. of the @var{interface} start.
  714. @end defmac
  715. @defmac STARPU_CSR_GET_ELEMSIZE ({void *}@var{interface})
  716. Return the size of the elements registered into the matrix designated by @var{interface}.
  717. @end defmac
  718. @node Data Partition
  719. @section Data Partition
  720. @menu
  721. * Basic API::
  722. * Predefined filter functions::
  723. @end menu
  724. @node Basic API
  725. @subsection Basic API
  726. @deftp {Data Type} {struct starpu_data_filter}
  727. The filter structure describes a data partitioning operation, to be given to the
  728. @code{starpu_data_partition} function, see @ref{starpu_data_partition}
  729. for an example. The different fields are:
  730. @table @asis
  731. @item @code{filter_func}
  732. This function fills the @code{child_interface} structure with interface
  733. information for the @code{id}-th child of the parent @code{father_interface} (among @code{nparts}).
  734. @code{void (*filter_func)(void *father_interface, void* child_interface, struct starpu_data_filter *, unsigned id, unsigned nparts);}
  735. @item @code{nchildren}
  736. This is the number of parts to partition the data into.
  737. @item @code{get_nchildren}
  738. This returns the number of children. This can be used instead of @code{nchildren} when the number of
  739. children depends on the actual data (e.g. the number of blocks in a sparse
  740. matrix).
  741. @code{unsigned (*get_nchildren)(struct starpu_data_filter *, starpu_data_handle_t initial_handle);}
  742. @item @code{get_child_ops}
  743. In case the resulting children use a different data interface, this function
  744. returns which interface is used by child number @code{id}.
  745. @code{struct starpu_data_interface_ops *(*get_child_ops)(struct starpu_data_filter *, unsigned id);}
  746. @item @code{filter_arg}
  747. Some filters take an addition parameter, but this is usually unused.
  748. @item @code{filter_arg_ptr}
  749. Some filters take an additional array parameter like the sizes of the parts, but
  750. this is usually unused.
  751. @end table
  752. @end deftp
  753. @deftypefun void starpu_data_partition (starpu_data_handle_t @var{initial_handle}, {struct starpu_data_filter *}@var{f})
  754. @anchor{starpu_data_partition}
  755. This requests partitioning one StarPU data @var{initial_handle} into several
  756. subdata according to the filter @var{f}, as shown in the following example:
  757. @cartouche
  758. @smallexample
  759. struct starpu_data_filter f = @{
  760. .filter_func = starpu_vertical_block_filter_func,
  761. .nchildren = nslicesx,
  762. .get_nchildren = NULL,
  763. .get_child_ops = NULL
  764. @};
  765. starpu_data_partition(A_handle, &f);
  766. @end smallexample
  767. @end cartouche
  768. @end deftypefun
  769. @deftypefun void starpu_data_unpartition (starpu_data_handle_t @var{root_data}, uint32_t @var{gathering_node})
  770. This unapplies one filter, thus unpartitioning the data. The pieces of data are
  771. collected back into one big piece in the @var{gathering_node} (usually 0).
  772. @cartouche
  773. @smallexample
  774. starpu_data_unpartition(A_handle, 0);
  775. @end smallexample
  776. @end cartouche
  777. @end deftypefun
  778. @deftypefun int starpu_data_get_nb_children (starpu_data_handle_t @var{handle})
  779. This function returns the number of children.
  780. @end deftypefun
  781. @deftypefun starpu_data_handle_t starpu_data_get_child (starpu_data_handle_t @var{handle}, unsigned @var{i})
  782. Return the @var{i}th child of the given @var{handle}, which must have been partitionned beforehand.
  783. @end deftypefun
  784. @deftypefun starpu_data_handle_t starpu_data_get_sub_data (starpu_data_handle_t @var{root_data}, unsigned @var{depth}, ... )
  785. After partitioning a StarPU data by applying a filter,
  786. @code{starpu_data_get_sub_data} can be used to get handles for each of
  787. the data portions. @var{root_data} is the parent data that was
  788. partitioned. @var{depth} is the number of filters to traverse (in
  789. case several filters have been applied, to e.g. partition in row
  790. blocks, and then in column blocks), and the subsequent
  791. parameters are the indexes. The function returns a handle to the
  792. subdata.
  793. @cartouche
  794. @smallexample
  795. h = starpu_data_get_sub_data(A_handle, 1, taskx);
  796. @end smallexample
  797. @end cartouche
  798. @end deftypefun
  799. @deftypefun starpu_data_handle_t starpu_data_vget_sub_data (starpu_data_handle_t @var{root_data}, unsigned @var{depth}, va_list @var{pa})
  800. This function is similar to @code{starpu_data_get_sub_data} but uses a
  801. va_list for the parameter list.
  802. @end deftypefun
  803. @deftypefun void starpu_data_map_filters (starpu_data_handle_t @var{root_data}, unsigned @var{nfilters}, ...)
  804. Applies @var{nfilters} filters to the handle designated by @var{root_handle}
  805. recursively. @var{nfilters} pointers to variables of the type
  806. starpu_data_filter should be given.
  807. @end deftypefun
  808. @deftypefun void starpu_data_vmap_filters (starpu_data_handle_t @var{root_data}, unsigned @var{nfilters}, va_list @var{pa})
  809. Applies @var{nfilters} filters to the handle designated by @var{root_handle}
  810. recursively. It uses a va_list of pointers to variables of the typer
  811. starpu_data_filter.
  812. @end deftypefun
  813. @node Predefined filter functions
  814. @subsection Predefined filter functions
  815. @menu
  816. * Partitioning BCSR Data::
  817. * Partitioning BLAS interface::
  818. * Partitioning Vector Data::
  819. * Partitioning Block Data::
  820. @end menu
  821. This section gives a partial list of the predefined partitioning functions.
  822. Examples on how to use them are shown in @ref{Partitioning Data}. The complete
  823. list can be found in @code{starpu_data_filters.h} .
  824. @node Partitioning BCSR Data
  825. @subsubsection Partitioning BCSR Data
  826. @deftypefun void starpu_canonical_block_filter_bcsr (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  827. TODO
  828. @end deftypefun
  829. @deftypefun void starpu_vertical_block_filter_func_csr (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  830. TODO
  831. @end deftypefun
  832. @node Partitioning BLAS interface
  833. @subsubsection Partitioning BLAS interface
  834. @deftypefun void starpu_block_filter_func (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  835. This partitions a dense Matrix into horizontal blocks.
  836. @end deftypefun
  837. @deftypefun void starpu_vertical_block_filter_func (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  838. This partitions a dense Matrix into vertical blocks.
  839. @end deftypefun
  840. @node Partitioning Vector Data
  841. @subsubsection Partitioning Vector Data
  842. @deftypefun void starpu_block_filter_func_vector (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  843. Return in @code{*@var{child_interface}} the @var{id}th element of the
  844. vector represented by @var{father_interface} once partitioned in
  845. @var{nparts} chunks of equal size.
  846. @end deftypefun
  847. @deftypefun void starpu_vector_list_filter_func (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  848. Return in @code{*@var{child_interface}} the @var{id}th element of the
  849. vector represented by @var{father_interface} once partitioned into
  850. @var{nparts} chunks according to the @code{filter_arg_ptr} field of
  851. @code{*@var{f}}.
  852. The @code{filter_arg_ptr} field must point to an array of @var{nparts}
  853. @code{uint32_t} elements, each of which specifies the number of elements
  854. in each chunk of the partition.
  855. @end deftypefun
  856. @deftypefun void starpu_vector_divide_in_2_filter_func (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  857. Return in @code{*@var{child_interface}} the @var{id}th element of the
  858. vector represented by @var{father_interface} once partitioned in two
  859. chunks of equal size, ignoring @var{nparts}. Thus, @var{id} must be
  860. @code{0} or @code{1}.
  861. @end deftypefun
  862. @node Partitioning Block Data
  863. @subsubsection Partitioning Block Data
  864. @deftypefun void starpu_block_filter_func_block (void *@var{father_interface}, void *@var{child_interface}, {struct starpu_data_filter} *@var{f}, unsigned @var{id}, unsigned @var{nparts})
  865. This partitions a 3D matrix along the X axis.
  866. @end deftypefun
  867. @node Codelets and Tasks
  868. @section Codelets and Tasks
  869. This section describes the interface to manipulate codelets and tasks.
  870. @deftp {Data Type} {enum starpu_codelet_type}
  871. todo
  872. @end deftp
  873. @deftp {Data Type} {struct starpu_codelet}
  874. The codelet structure describes a kernel that is possibly implemented on various
  875. targets. For compatibility, make sure to initialize the whole structure to zero.
  876. @table @asis
  877. @item @code{where} (optional)
  878. Indicates which types of processing units are able to execute the codelet.
  879. @code{STARPU_CPU|STARPU_CUDA} for instance indicates that the codelet is
  880. implemented for both CPU cores and CUDA devices while @code{STARPU_GORDON}
  881. indicates that it is only available on Cell SPUs. If the field is
  882. unset, its value will be automatically set based on the availability
  883. of the @code{XXX_funcs} fields defined below.
  884. @item @code{can_execute} (optional)
  885. Function prototype:
  886. @code{int (*can_execute)(unsigned workerid, struct starpu_task *task, unsigned nimpl)}.
  887. Returns 1 if the worker designated by @var{workerid} can execute the @var{nimpl}th implementation of the given@var{task}, 0 otherwise.
  888. @item @code{cpu_func} (optional)
  889. This field has been made deprecated. One should use instead the
  890. @code{cpu_funcs} field.
  891. @item @code{cpu_funcs} (optional)
  892. Is an array of function pointers to the CPU implementations of the codelet.
  893. It must be terminated by a NULL value.
  894. The functions prototype must be: @code{void cpu_func(void *buffers[], void *cl_arg)}. The first
  895. argument being the array of data managed by the data management library, and
  896. the second argument is a pointer to the argument passed from the @code{cl_arg}
  897. field of the @code{starpu_task} structure.
  898. If the @code{where} field is set, then the @code{cpu_funcs} field is
  899. ignored if @code{STARPU_CPU} does not appear in the @code{where}
  900. field, it must be non-null otherwise.
  901. @item @code{cuda_func} (optional)
  902. This field has been made deprecated. One should use instead the
  903. @code{cuda_funcs} field.
  904. @item @code{cuda_funcs} (optional)
  905. Is an array of function pointers to the CUDA implementations of the codelet.
  906. It must be terminated by a NULL value.
  907. @emph{The functions must be host-functions written in the CUDA runtime
  908. API}. Their prototype must
  909. be: @code{void cuda_func(void *buffers[], void *cl_arg);}.
  910. If the @code{where} field is set, then the @code{cuda_funcs}
  911. field is ignored if @code{STARPU_CUDA} does not appear in the @code{where}
  912. field, it must be non-null otherwise.
  913. @item @code{opencl_func} (optional)
  914. This field has been made deprecated. One should use instead the
  915. @code{opencl_funcs} field.
  916. @item @code{opencl_funcs} (optional)
  917. Is an array of function pointers to the OpenCL implementations of the codelet.
  918. It must be terminated by a NULL value.
  919. The functions prototype must be:
  920. @code{void opencl_func(void *buffers[], void *cl_arg);}.
  921. If the @code{where} field is set, then the @code{opencl_funcs} field
  922. is ignored if @code{STARPU_OPENCL} does not appear in the @code{where}
  923. field, it must be non-null otherwise.
  924. @item @code{gordon_func} (optional)
  925. This field has been made deprecated. One should use instead the
  926. @code{gordon_funcs} field.
  927. @item @code{gordon_funcs} (optional)
  928. Is an array of index of the Cell SPU implementations of the codelet within the
  929. Gordon library.
  930. It must be terminated by a NULL value.
  931. See Gordon documentation for more details on how to register a kernel and
  932. retrieve its index.
  933. @item @code{nbuffers}
  934. Specifies the number of arguments taken by the codelet. These arguments are
  935. managed by the DSM and are accessed from the @code{void *buffers[]}
  936. array. The constant argument passed with the @code{cl_arg} field of the
  937. @code{starpu_task} structure is not counted in this number. This value should
  938. not be above @code{STARPU_NMAXBUFS}.
  939. @item @code{modes}
  940. Is an array of @code{enum starpu_access_mode}. It describes the
  941. required access modes to the data neeeded by the codelet (e.g.
  942. @code{STARPU_RW}). The number of entries in this array must be
  943. specified in the @code{nbuffers} field (defined above), and should not
  944. exceed @code{STARPU_NMAXBUFS}.
  945. If unsufficient, this value can be set with the @code{--enable-maxbuffers}
  946. option when configuring StarPU.
  947. @item @code{model} (optional)
  948. This is a pointer to the task duration performance model associated to this
  949. codelet. This optional field is ignored when set to @code{NULL}.
  950. TODO
  951. @item @code{power_model} (optional)
  952. This is a pointer to the task power consumption performance model associated
  953. to this codelet. This optional field is ignored when set to @code{NULL}.
  954. In the case of parallel codelets, this has to account for all processing units
  955. involved in the parallel execution.
  956. TODO
  957. @item @code{per_worker_stats} (optional)
  958. Statistics collected at runtime: this is filled by StarPU and should not be
  959. accessed directly (use the starpu_display_codelet_stats function instead for
  960. instance).
  961. @item @code{name} (optional)
  962. Codelets are allowed to have a name, which can be useful for debugging purposes.
  963. @item @code{type} (optional)
  964. (@code{enum starpu_codelet_type})
  965. The default is @code{STARPU_SEQ}, i.e. usual sequential implementation. Other
  966. values (@code{STARPU_SPMD} or @code{STARPU_FORKJOIN} declare that a parallel
  967. implementation is also available. See @ref{Parallel Tasks} for details.
  968. @item @code{max_parallelism} (optional)
  969. If a parallel implementation is available, this denotes the maximum combined
  970. worker size that StarPU will use to execute parallel tasks for this codelet.
  971. @end table
  972. @end deftp
  973. @deftp {Data Type} {enum starpu_task_status}
  974. todo
  975. @end deftp
  976. @deftp {Data Type} {struct starpu_task}
  977. The @code{starpu_task} structure describes a task that can be offloaded on the various
  978. processing units managed by StarPU. It instantiates a codelet. It can either be
  979. allocated dynamically with the @code{starpu_task_create} method, or declared
  980. statically. In the latter case, the programmer has to zero the
  981. @code{starpu_task} structure and to fill the different fields properly. The
  982. indicated default values correspond to the configuration of a task allocated
  983. with @code{starpu_task_create}.
  984. @table @asis
  985. @item @code{cl}
  986. Is a pointer to the corresponding @code{struct starpu_codelet} data structure. This
  987. describes where the kernel should be executed, and supplies the appropriate
  988. implementations. When set to @code{NULL}, no code is executed during the tasks,
  989. such empty tasks can be useful for synchronization purposes.
  990. @item @code{buffers}
  991. This field has been made deprecated. One should use instead the
  992. @code{handles} field to specify the handles to the data accessed by
  993. the task. The access modes are now defined in the @code{mode} field of
  994. the @code{struct starpu_codelet} structure.
  995. @item @code{handles}
  996. Is an array of @code{starpu_data_handle_t}. It specifies the handles
  997. to the different pieces of data accessed by the task. The number
  998. of entries in this array must be specified in the @code{nbuffers} field of the
  999. @code{struct starpu_codelet} structure, and should not exceed
  1000. @code{STARPU_NMAXBUFS}.
  1001. If unsufficient, this value can be set with the @code{--enable-maxbuffers}
  1002. option when configuring StarPU.
  1003. @item @code{interfaces}
  1004. todo
  1005. @item @code{cl_arg} (optional; default: @code{NULL})
  1006. This pointer is passed to the codelet through the second argument
  1007. of the codelet implementation (e.g. @code{cpu_func} or @code{cuda_func}).
  1008. In the specific case of the Cell processor, see the @code{cl_arg_size}
  1009. argument.
  1010. @item @code{cl_arg_size} (optional, Cell-specific)
  1011. In the case of the Cell processor, the @code{cl_arg} pointer is not directly
  1012. given to the SPU function. A buffer of size @code{cl_arg_size} is allocated on
  1013. the SPU. This buffer is then filled with the @code{cl_arg_size} bytes starting
  1014. at address @code{cl_arg}. In this case, the argument given to the SPU codelet
  1015. is therefore not the @code{cl_arg} pointer, but the address of the buffer in
  1016. local store (LS) instead. This field is ignored for CPU, CUDA and OpenCL
  1017. codelets, where the @code{cl_arg} pointer is given as such.
  1018. @item @code{callback_func} (optional) (default: @code{NULL})
  1019. This is a function pointer of prototype @code{void (*f)(void *)} which
  1020. specifies a possible callback. If this pointer is non-null, the callback
  1021. function is executed @emph{on the host} after the execution of the task. The
  1022. callback is passed the value contained in the @code{callback_arg} field. No
  1023. callback is executed if the field is set to @code{NULL}.
  1024. @item @code{callback_arg} (optional) (default: @code{NULL})
  1025. This is the pointer passed to the callback function. This field is ignored if
  1026. the @code{callback_func} is set to @code{NULL}.
  1027. @item @code{use_tag} (optional) (default: @code{0})
  1028. If set, this flag indicates that the task should be associated with the tag
  1029. contained in the @code{tag_id} field. Tag allow the application to synchronize
  1030. with the task and to express task dependencies easily.
  1031. @item @code{tag_id}
  1032. This fields contains the tag associated to the task if the @code{use_tag} field
  1033. was set, it is ignored otherwise.
  1034. @item @code{synchronous}
  1035. If this flag is set, the @code{starpu_task_submit} function is blocking and
  1036. returns only when the task has been executed (or if no worker is able to
  1037. process the task). Otherwise, @code{starpu_task_submit} returns immediately.
  1038. @item @code{priority} (optional) (default: @code{STARPU_DEFAULT_PRIO})
  1039. This field indicates a level of priority for the task. This is an integer value
  1040. that must be set between the return values of the
  1041. @code{starpu_sched_get_min_priority} function for the least important tasks,
  1042. and that of the @code{starpu_sched_get_max_priority} for the most important
  1043. tasks (included). The @code{STARPU_MIN_PRIO} and @code{STARPU_MAX_PRIO} macros
  1044. are provided for convenience and respectively returns value of
  1045. @code{starpu_sched_get_min_priority} and @code{starpu_sched_get_max_priority}.
  1046. Default priority is @code{STARPU_DEFAULT_PRIO}, which is always defined as 0 in
  1047. order to allow static task initialization. Scheduling strategies that take
  1048. priorities into account can use this parameter to take better scheduling
  1049. decisions, but the scheduling policy may also ignore it.
  1050. @item @code{execute_on_a_specific_worker} (default: @code{0})
  1051. If this flag is set, StarPU will bypass the scheduler and directly affect this
  1052. task to the worker specified by the @code{workerid} field.
  1053. @item @code{workerid} (optional)
  1054. If the @code{execute_on_a_specific_worker} field is set, this field indicates
  1055. which is the identifier of the worker that should process this task (as
  1056. returned by @code{starpu_worker_get_id}). This field is ignored if
  1057. @code{execute_on_a_specific_worker} field is set to 0.
  1058. @item @code{bundle} (optional)
  1059. The bundle that includes this task. If no bundle is used, this should be NULL.
  1060. @item @code{detach} (optional) (default: @code{1})
  1061. If this flag is set, it is not possible to synchronize with the task
  1062. by the means of @code{starpu_task_wait} later on. Internal data structures
  1063. are only guaranteed to be freed once @code{starpu_task_wait} is called if the
  1064. flag is not set.
  1065. @item @code{destroy} (optional) (default: @code{1})
  1066. If this flag is set, the task structure will automatically be freed, either
  1067. after the execution of the callback if the task is detached, or during
  1068. @code{starpu_task_wait} otherwise. If this flag is not set, dynamically
  1069. allocated data structures will not be freed until @code{starpu_task_destroy} is
  1070. called explicitly. Setting this flag for a statically allocated task structure
  1071. will result in undefined behaviour.
  1072. @item @code{regenerate} (optional)
  1073. If this flag is set, the task will be re-submitted to StarPU once it has been
  1074. executed. This flag must not be set if the destroy flag is set too.
  1075. @item @code{status} (optional)
  1076. @code{enum starpu_task_status} todo
  1077. @item @code{profiling_info} (optional)
  1078. @code{struct starpu_task_profiling_info *} todo
  1079. @item @code{predicted} (output field)
  1080. Predicted duration of the task. This field is only set if the scheduling
  1081. strategy used performance models.
  1082. @item @code{predicted_transfer} (optional)
  1083. Predicted data transfer duration for the task in microseconds. This field is
  1084. only valid if the scheduling strategy uses performance models.
  1085. @item @code{prev}
  1086. A pointer to the previous task. This should only be used by StarPU.
  1087. @item @code{next}
  1088. A pointer to the next task. This should only be used by StarPU.
  1089. @item @code{mf_skip}
  1090. todo
  1091. @item @code{starpu_private}
  1092. This is private to StarPU, do not modify. If the task is allocated by hand
  1093. (without starpu_task_create), this field should be set to NULL.
  1094. @item @code{magic}
  1095. This field is set when initializing a task. It prevents a task from being
  1096. submitted if it has not been properly initialized.
  1097. @end table
  1098. @end deftp
  1099. @deftypefun void starpu_task_init ({struct starpu_task} *@var{task})
  1100. Initialize @var{task} with default values. This function is implicitly
  1101. called by @code{starpu_task_create}. By default, tasks initialized with
  1102. @code{starpu_task_init} must be deinitialized explicitly with
  1103. @code{starpu_task_deinit}. Tasks can also be initialized statically, using the
  1104. constant @code{STARPU_TASK_INITIALIZER}.
  1105. @end deftypefun
  1106. @deftypefun {struct starpu_task *} starpu_task_create (void)
  1107. Allocate a task structure and initialize it with default values. Tasks
  1108. allocated dynamically with @code{starpu_task_create} are automatically freed when the
  1109. task is terminated. This means that the task pointer can not be used any more
  1110. once the task is submitted, since it can be executed at any time (unless
  1111. dependencies make it wait) and thus freed at any time.
  1112. If the destroy flag is explicitly unset, the resources used
  1113. by the task have to be freed by calling
  1114. @code{starpu_task_destroy}.
  1115. @end deftypefun
  1116. @deftypefun void starpu_task_deinit ({struct starpu_task} *@var{task})
  1117. Release all the structures automatically allocated to execute @var{task}. This is
  1118. called automatically by @code{starpu_task_destroy}, but the task structure itself is not
  1119. freed. This should be used for statically allocated tasks for instance.
  1120. @end deftypefun
  1121. @deftypefun void starpu_task_destroy ({struct starpu_task} *@var{task})
  1122. Free the resource allocated during @code{starpu_task_create} and
  1123. associated with @var{task}. This function can be called automatically
  1124. after the execution of a task by setting the @code{destroy} flag of the
  1125. @code{starpu_task} structure (default behaviour). Calling this function
  1126. on a statically allocated task results in an undefined behaviour.
  1127. @end deftypefun
  1128. @deftypefun int starpu_task_wait ({struct starpu_task} *@var{task})
  1129. This function blocks until @var{task} has been executed. It is not possible to
  1130. synchronize with a task more than once. It is not possible to wait for
  1131. synchronous or detached tasks.
  1132. Upon successful completion, this function returns 0. Otherwise, @code{-EINVAL}
  1133. indicates that the specified task was either synchronous or detached.
  1134. @end deftypefun
  1135. @deftypefun int starpu_task_submit ({struct starpu_task} *@var{task})
  1136. This function submits @var{task} to StarPU. Calling this function does
  1137. not mean that the task will be executed immediately as there can be data or task
  1138. (tag) dependencies that are not fulfilled yet: StarPU will take care of
  1139. scheduling this task with respect to such dependencies.
  1140. This function returns immediately if the @code{synchronous} field of the
  1141. @code{starpu_task} structure was set to 0, and block until the termination of
  1142. the task otherwise. It is also possible to synchronize the application with
  1143. asynchronous tasks by the means of tags, using the @code{starpu_tag_wait}
  1144. function for instance.
  1145. In case of success, this function returns 0, a return value of @code{-ENODEV}
  1146. means that there is no worker able to process this task (e.g. there is no GPU
  1147. available and this task is only implemented for CUDA devices).
  1148. @end deftypefun
  1149. @deftypefun int starpu_task_wait_for_all (void)
  1150. This function blocks until all the tasks that were submitted are terminated.
  1151. @end deftypefun
  1152. @deftypefun {struct starpu_task *} starpu_task_get_current (void)
  1153. This function returns the task currently executed by the worker, or
  1154. NULL if it is called either from a thread that is not a task or simply
  1155. because there is no task being executed at the moment.
  1156. @end deftypefun
  1157. @deftypefun void starpu_display_codelet_stats ({struct starpu_codelet} *@var{cl})
  1158. Output on @code{stderr} some statistics on the codelet @var{cl}.
  1159. @end deftypefun
  1160. @deftypefun int starpu_task_wait_for_no_ready (void)
  1161. This function waits until there is no more ready task.
  1162. @end deftypefun
  1163. @c Callbacks: what can we put in callbacks ?
  1164. @node Explicit Dependencies
  1165. @section Explicit Dependencies
  1166. @deftypefun void starpu_task_declare_deps_array ({struct starpu_task} *@var{task}, unsigned @var{ndeps}, {struct starpu_task} *@var{task_array}[])
  1167. Declare task dependencies between a @var{task} and an array of tasks of length
  1168. @var{ndeps}. This function must be called prior to the submission of the task,
  1169. but it may called after the submission or the execution of the tasks in the
  1170. array, provided the tasks are still valid (ie. they were not automatically
  1171. destroyed). Calling this function on a task that was already submitted or with
  1172. an entry of @var{task_array} that is not a valid task anymore results in an
  1173. undefined behaviour. If @var{ndeps} is null, no dependency is added. It is
  1174. possible to call @code{starpu_task_declare_deps_array} multiple times on the
  1175. same task, in this case, the dependencies are added. It is possible to have
  1176. redundancy in the task dependencies.
  1177. @end deftypefun
  1178. @deftp {Data Type} {starpu_tag_t}
  1179. This type defines a task logical identifer. It is possible to associate a task with a unique ``tag'' chosen by the application, and to express
  1180. dependencies between tasks by the means of those tags. To do so, fill the
  1181. @code{tag_id} field of the @code{starpu_task} structure with a tag number (can
  1182. be arbitrary) and set the @code{use_tag} field to 1.
  1183. If @code{starpu_tag_declare_deps} is called with this tag number, the task will
  1184. not be started until the tasks which holds the declared dependency tags are
  1185. completed.
  1186. @end deftp
  1187. @deftypefun void starpu_tag_declare_deps (starpu_tag_t @var{id}, unsigned @var{ndeps}, ...)
  1188. Specify the dependencies of the task identified by tag @var{id}. The first
  1189. argument specifies the tag which is configured, the second argument gives the
  1190. number of tag(s) on which @var{id} depends. The following arguments are the
  1191. tags which have to be terminated to unlock the task.
  1192. This function must be called before the associated task is submitted to StarPU
  1193. with @code{starpu_task_submit}.
  1194. Because of the variable arity of @code{starpu_tag_declare_deps}, note that the
  1195. last arguments @emph{must} be of type @code{starpu_tag_t}: constant values
  1196. typically need to be explicitly casted. Using the
  1197. @code{starpu_tag_declare_deps_array} function avoids this hazard.
  1198. @cartouche
  1199. @smallexample
  1200. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  1201. starpu_tag_declare_deps((starpu_tag_t)0x1,
  1202. 2, (starpu_tag_t)0x32, (starpu_tag_t)0x52);
  1203. @end smallexample
  1204. @end cartouche
  1205. @end deftypefun
  1206. @deftypefun void starpu_tag_declare_deps_array (starpu_tag_t @var{id}, unsigned @var{ndeps}, {starpu_tag_t *}@var{array})
  1207. This function is similar to @code{starpu_tag_declare_deps}, except
  1208. that its does not take a variable number of arguments but an array of
  1209. tags of size @var{ndeps}.
  1210. @cartouche
  1211. @smallexample
  1212. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  1213. starpu_tag_t tag_array[2] = @{0x32, 0x52@};
  1214. starpu_tag_declare_deps_array((starpu_tag_t)0x1, 2, tag_array);
  1215. @end smallexample
  1216. @end cartouche
  1217. @end deftypefun
  1218. @deftypefun int starpu_tag_wait (starpu_tag_t @var{id})
  1219. This function blocks until the task associated to tag @var{id} has been
  1220. executed. This is a blocking call which must therefore not be called within
  1221. tasks or callbacks, but only from the application directly. It is possible to
  1222. synchronize with the same tag multiple times, as long as the
  1223. @code{starpu_tag_remove} function is not called. Note that it is still
  1224. possible to synchronize with a tag associated to a task which @code{starpu_task}
  1225. data structure was freed (e.g. if the @code{destroy} flag of the
  1226. @code{starpu_task} was enabled).
  1227. @end deftypefun
  1228. @deftypefun int starpu_tag_wait_array (unsigned @var{ntags}, starpu_tag_t *@var{id})
  1229. This function is similar to @code{starpu_tag_wait} except that it blocks until
  1230. @emph{all} the @var{ntags} tags contained in the @var{id} array are
  1231. terminated.
  1232. @end deftypefun
  1233. @deftypefun void starpu_tag_remove (starpu_tag_t @var{id})
  1234. This function releases the resources associated to tag @var{id}. It can be
  1235. called once the corresponding task has been executed and when there is
  1236. no other tag that depend on this tag anymore.
  1237. @end deftypefun
  1238. @deftypefun void starpu_tag_notify_from_apps (starpu_tag_t @var{id})
  1239. This function explicitly unlocks tag @var{id}. It may be useful in the
  1240. case of applications which execute part of their computation outside StarPU
  1241. tasks (e.g. third-party libraries). It is also provided as a
  1242. convenient tool for the programmer, for instance to entirely construct the task
  1243. DAG before actually giving StarPU the opportunity to execute the tasks.
  1244. @end deftypefun
  1245. @node Implicit Data Dependencies
  1246. @section Implicit Data Dependencies
  1247. In this section, we describe how StarPU makes it possible to insert implicit
  1248. task dependencies in order to enforce sequential data consistency. When this
  1249. data consistency is enabled on a specific data handle, any data access will
  1250. appear as sequentially consistent from the application. For instance, if the
  1251. application submits two tasks that access the same piece of data in read-only
  1252. mode, and then a third task that access it in write mode, dependencies will be
  1253. added between the two first tasks and the third one. Implicit data dependencies
  1254. are also inserted in the case of data accesses from the application.
  1255. @deftypefun void starpu_data_set_default_sequential_consistency_flag (unsigned @var{flag})
  1256. Set the default sequential consistency flag. If a non-zero value is passed, a
  1257. sequential data consistency will be enforced for all handles registered after
  1258. this function call, otherwise it is disabled. By default, StarPU enables
  1259. sequential data consistency. It is also possible to select the data consistency
  1260. mode of a specific data handle with the
  1261. @code{starpu_data_set_sequential_consistency_flag} function.
  1262. @end deftypefun
  1263. @deftypefun unsigned starpu_data_get_default_sequential_consistency_flag (void)
  1264. Return the default sequential consistency flag
  1265. @end deftypefun
  1266. @deftypefun void starpu_data_set_sequential_consistency_flag (starpu_data_handle_t @var{handle}, unsigned @var{flag})
  1267. Sets the data consistency mode associated to a data handle. The consistency
  1268. mode set using this function has the priority over the default mode which can
  1269. be set with @code{starpu_data_set_sequential_consistency_flag}.
  1270. @end deftypefun
  1271. @node Performance Model API
  1272. @section Performance Model API
  1273. @deftp {Data Type} {enum starpu_perf_archtype}
  1274. Enumerates the various types of architectures.
  1275. CPU types range within STARPU_CPU_DEFAULT (1 CPU), STARPU_CPU_DEFAULT+1 (2 CPUs), ... STARPU_CPU_DEFAULT + STARPU_MAXCPUS - 1 (STARPU_MAXCPUS CPUs).
  1276. CUDA types range within STARPU_CUDA_DEFAULT (GPU number 0), STARPU_CUDA_DEFAULT + 1 (GPU number 1), ..., STARPU_CUDA_DEFAULT + STARPU_MAXCUDADEVS - 1 (GPU number STARPU_MAXCUDADEVS - 1).
  1277. OpenCL types range within STARPU_OPENCL_DEFAULT (GPU number 0), STARPU_OPENCL_DEFAULT + 1 (GPU number 1), ..., STARPU_OPENCL_DEFAULT + STARPU_MAXOPENCLDEVS - 1 (GPU number STARPU_MAXOPENCLDEVS - 1).
  1278. @table @asis
  1279. @item @code{STARPU_CPU_DEFAULT}
  1280. @item @code{STARPU_CUDA_DEFAULT}
  1281. @item @code{STARPU_OPENCL_DEFAULT}
  1282. @item @code{STARPU_GORDON_DEFAULT}
  1283. @end table
  1284. @end deftp
  1285. @deftp {Data Type} {enum starpu_perfmodel_type}
  1286. The possible values are:
  1287. @table @asis
  1288. @item @code{STARPU_PER_ARCH} for application-provided per-arch cost model functions.
  1289. @item @code{STARPU_COMMON} for application-provided common cost model function, with per-arch factor.
  1290. @item @code{STARPU_HISTORY_BASED} for automatic history-based cost model.
  1291. @item @code{STARPU_REGRESSION_BASED} for automatic linear regression-based cost model (alpha * size ^ beta).
  1292. @item @code{STARPU_NL_REGRESSION_BASED} for automatic non-linear regression-based cost mode (a * size ^ b + c).
  1293. @end table
  1294. @end deftp
  1295. @deftp {Data Type} {struct starpu_perfmodel}
  1296. contains all information about a performance model. At least the
  1297. @code{type} and @code{symbol} fields have to be filled when defining a
  1298. performance model for a codelet. If not provided, other fields have to be zero.
  1299. @table @asis
  1300. @item @code{type}
  1301. is the type of performance model @code{enum starpu_perfmodel_type}:
  1302. @code{STARPU_HISTORY_BASED},
  1303. @code{STARPU_REGRESSION_BASED}, @code{STARPU_NL_REGRESSION_BASED}: No
  1304. other fields needs to be provided, this is purely history-based. @code{STARPU_PER_ARCH}:
  1305. @code{per_arch} has to be filled with functions which return the cost in
  1306. micro-seconds. @code{STARPU_COMMON}: @code{cost_function} has to be filled with
  1307. a function that returns the cost in micro-seconds on a CPU, timing on other
  1308. archs will be determined by multiplying by an arch-specific factor.
  1309. @item @code{symbol}
  1310. is the symbol name for the performance model, which will be used as
  1311. file name to store the model.
  1312. @item @code{cost_model}
  1313. This field is deprecated. Use instead the @code{cost_function} field.
  1314. @item @code{cost_function}
  1315. Used by @code{STARPU_COMMON}: takes a task and
  1316. implementation number, and must return a task duration estimation in micro-seconds.
  1317. @item @code{per_arch}
  1318. Used by @code{STARPU_PER_ARCH}: array of @code{struct
  1319. starpu_per_arch_perfmodel} structures.
  1320. @item @code{size_base}
  1321. Used by @code{STARPU_HISTORY_BASED} and
  1322. @code{STARPU_*REGRESSION_BASED}. If not NULL, takes a task and
  1323. implementation number, and returns the size to be used as index for
  1324. history and regression.
  1325. @end table
  1326. @end deftp
  1327. @deftp {Data Type} {struct starpu_per_arch_perfmodel}
  1328. contains information about the performance model of a given arch.
  1329. @table @asis
  1330. @item @code{cost_model}
  1331. This field is deprecated. Use instead the @code{cost_function} field.
  1332. @item @code{cost_function}
  1333. Used by @code{STARPU_PER_ARCH}, must point to functions which take a task, the
  1334. target arch and implementation number (as mere conveniency, since the array
  1335. is already indexed by these), and must return a task duration estimation in
  1336. micro-seconds.
  1337. @item @code{list}
  1338. Used by @code{STARPU_HISTORY_BASED} and @code{STARPU_NL_REGRESSION_BASED},
  1339. records all execution history measures.
  1340. @item @code{regression}
  1341. Used by @code{STARPU_HISTORY_REGRESION_BASED} and
  1342. @code{STARPU_NL_REGRESSION_BASED}, contains the estimated factors of the
  1343. regression.
  1344. @item @code{size_base}: Same as in @code{struct perfmodel}, but per-arch, in
  1345. case it depends on the architecture-specific implementation.
  1346. @end table
  1347. @end deftp
  1348. @deftypefun int starpu_load_history_debug ({const char} *@var{symbol}, {struct starpu_perfmodel} *@var{model})
  1349. loads a given performance model. The @var{model} structure has to be completely zero, and will be filled with the information saved in @code{~/.starpu}.
  1350. @end deftypefun
  1351. @deftypefun void starpu_perfmodel_debugfilepath ({struct starpu_perfmodel} *@var{model}, {enum starpu_perf_archtype} @var{arch}, char *@var{path}, size_t @var{maxlen}, unsigned nimpl)
  1352. returns the path to the debugging information for the performance model.
  1353. @end deftypefun
  1354. @deftypefun void starpu_perfmodel_get_arch_name ({enum starpu_perf_archtype} @var{arch}, char *@var{archname}, size_t @var{maxlen}, unsigned nimpl)
  1355. returns the architecture name for @var{arch}.
  1356. todo
  1357. @end deftypefun
  1358. @deftypefun void starpu_force_bus_sampling (void)
  1359. forces sampling the bus performance model again.
  1360. @end deftypefun
  1361. @deftypefun {enum starpu_perf_archtype} starpu_worker_get_perf_archtype (int @var{workerid})
  1362. returns the architecture type of a given worker.
  1363. @end deftypefun
  1364. @deftypefun int starpu_list_models ({FILE *}@var{output})
  1365. prints a list of all performance models on @var{output}.
  1366. @end deftypefun
  1367. @deftypefun void starpu_bus_print_bandwidth ({FILE *}@var{f})
  1368. prints a matrix of bus bandwidths on @var{f}.
  1369. @end deftypefun
  1370. @node Profiling API
  1371. @section Profiling API
  1372. @deftypefun int starpu_profiling_status_set (int @var{status})
  1373. Thie function sets the profiling status. Profiling is activated by passing
  1374. @code{STARPU_PROFILING_ENABLE} in @var{status}. Passing
  1375. @code{STARPU_PROFILING_DISABLE} disables profiling. Calling this function
  1376. resets all profiling measurements. When profiling is enabled, the
  1377. @code{profiling_info} field of the @code{struct starpu_task} structure points
  1378. to a valid @code{struct starpu_task_profiling_info} structure containing
  1379. information about the execution of the task.
  1380. Negative return values indicate an error, otherwise the previous status is
  1381. returned.
  1382. @end deftypefun
  1383. @deftypefun int starpu_profiling_status_get (void)
  1384. Return the current profiling status or a negative value in case there was an error.
  1385. @end deftypefun
  1386. @deftypefun void starpu_set_profiling_id (int @var{new_id})
  1387. This function sets the ID used for profiling trace filename
  1388. @end deftypefun
  1389. @deftp {Data Type} {struct starpu_task_profiling_info}
  1390. This structure contains information about the execution of a task. It is
  1391. accessible from the @code{.profiling_info} field of the @code{starpu_task}
  1392. structure if profiling was enabled. The different fields are:
  1393. @table @asis
  1394. @item @code{submit_time}
  1395. Date of task submission (relative to the initialization of StarPU).
  1396. @item @code{start_time}
  1397. Date of task execution beginning (relative to the initialization of StarPU).
  1398. @item @code{end_time}
  1399. Date of task execution termination (relative to the initialization of StarPU).
  1400. @item @code{workerid}
  1401. Identifier of the worker which has executed the task.
  1402. @end table
  1403. @end deftp
  1404. @deftp {Data Type} {struct starpu_worker_profiling_info}
  1405. This structure contains the profiling information associated to a
  1406. worker. The different fields are:
  1407. @table @asis
  1408. @item @code{start_time}
  1409. Starting date for the reported profiling measurements.
  1410. @item @code{total_time}
  1411. Duration of the profiling measurement interval.
  1412. @item @code{executing_time}
  1413. Time spent by the worker to execute tasks during the profiling measurement interval.
  1414. @item @code{sleeping_time}
  1415. Time spent idling by the worker during the profiling measurement interval.
  1416. @item @code{executed_tasks}
  1417. Number of tasks executed by the worker during the profiling measurement interval.
  1418. @end table
  1419. @end deftp
  1420. @deftypefun int starpu_worker_get_profiling_info (int @var{workerid}, {struct starpu_worker_profiling_info *}@var{worker_info})
  1421. Get the profiling info associated to the worker identified by @var{workerid},
  1422. and reset the profiling measurements. If the @var{worker_info} argument is
  1423. NULL, only reset the counters associated to worker @var{workerid}.
  1424. Upon successful completion, this function returns 0. Otherwise, a negative
  1425. value is returned.
  1426. @end deftypefun
  1427. @deftp {Data Type} {struct starpu_bus_profiling_info}
  1428. TODO. The different fields are:
  1429. @table @asis
  1430. @item @code{start_time}
  1431. TODO
  1432. @item @code{total_time}
  1433. TODO
  1434. @item @code{transferred_bytes}
  1435. TODO
  1436. @item @code{transfer_count}
  1437. TODO
  1438. @end table
  1439. @end deftp
  1440. @deftypefun int starpu_bus_get_profiling_info (int @var{busid}, {struct starpu_bus_profiling_info *}@var{bus_info})
  1441. Get the profiling info associated to the worker designated by @var{workerid},
  1442. and reset the profiling measurements. If worker_info is NULL, only reset the
  1443. counters.
  1444. @end deftypefun
  1445. @deftypefun int starpu_bus_get_count (void)
  1446. TODO
  1447. @end deftypefun
  1448. @deftypefun int starpu_bus_get_id (int @var{src}, int @var{dst})
  1449. TODO
  1450. @end deftypefun
  1451. @deftypefun int starpu_bus_get_src (int @var{busid})
  1452. TODO
  1453. @end deftypefun
  1454. @deftypefun int starpu_bus_get_dst (int @var{busid})
  1455. TODO
  1456. @end deftypefun
  1457. @deftypefun double starpu_timing_timespec_delay_us ({struct timespec} *@var{start}, {struct timespec} *@var{end})
  1458. Returns the time elapsed between @var{start} and @var{end} in microseconds.
  1459. @end deftypefun
  1460. @deftypefun double starpu_timing_timespec_to_us ({struct timespec} *@var{ts})
  1461. Converts the given timespec @var{ts} into microseconds.
  1462. @end deftypefun
  1463. @deftypefun void starpu_bus_profiling_helper_display_summary (void)
  1464. TODO
  1465. @end deftypefun
  1466. @deftypefun void starpu_worker_profiling_helper_display_summary (void)
  1467. TODO
  1468. @end deftypefun
  1469. @node CUDA extensions
  1470. @section CUDA extensions
  1471. @deftypefun cudaStream_t starpu_cuda_get_local_stream (void)
  1472. This function gets the current worker's CUDA stream.
  1473. StarPU provides a stream for every CUDA device controlled by StarPU. This
  1474. function is only provided for convenience so that programmers can easily use
  1475. asynchronous operations within codelets without having to create a stream by
  1476. hand. Note that the application is not forced to use the stream provided by
  1477. @code{starpu_cuda_get_local_stream} and may also create its own streams.
  1478. Synchronizing with @code{cudaThreadSynchronize()} is allowed, but will reduce
  1479. the likelihood of having all transfers overlapped.
  1480. @end deftypefun
  1481. @deftypefun {const struct cudaDeviceProp *} starpu_cuda_get_device_properties (unsigned @var{workerid})
  1482. This function returns a pointer to device properties for worker @var{workerid}
  1483. (assumed to be a CUDA worker).
  1484. @end deftypefun
  1485. @deftypefun size_t starpu_cuda_get_global_mem_size (int devid)
  1486. todo
  1487. @end deftypefun
  1488. @deftypefun void starpu_cuda_report_error ({const char *}func, {const char *}file, int line, cudaError_t status)
  1489. todo
  1490. @end deftypefun
  1491. @deftypefun void starpu_helper_cublas_init (void)
  1492. This function initializes CUBLAS on every CUDA device.
  1493. The CUBLAS library must be initialized prior to any CUBLAS call. Calling
  1494. @code{starpu_helper_cublas_init} will initialize CUBLAS on every CUDA device
  1495. controlled by StarPU. This call blocks until CUBLAS has been properly
  1496. initialized on every device.
  1497. @end deftypefun
  1498. @deftypefun void starpu_helper_cublas_shutdown (void)
  1499. This function synchronously deinitializes the CUBLAS library on every CUDA device.
  1500. @end deftypefun
  1501. @deftypefun void starpu_cublas_report_error ({const char *}func, {const char *}file, int line, cublasStatus status)
  1502. todo
  1503. @end deftypefun
  1504. @node OpenCL extensions
  1505. @section OpenCL extensions
  1506. @menu
  1507. * Writing OpenCL kernels:: Writing OpenCL kernels
  1508. * Compiling OpenCL kernels:: Compiling OpenCL kernels
  1509. * Loading OpenCL kernels:: Loading OpenCL kernels
  1510. * OpenCL statistics:: Collecting statistics from OpenCL
  1511. @end menu
  1512. @node Writing OpenCL kernels
  1513. @subsection Writing OpenCL kernels
  1514. @deftypefun void starpu_opencl_display_error ({const char *}@var{func}, {const char *}@var{file}, int @var{line}, {const char *}@var{msg}, cl_int @var{status})
  1515. Given a valid error @var{status}, prints the corresponding error message on
  1516. stdout, along with the given function name @var{func}, the given filename
  1517. @var{file}, the given line number @var{line} and the given message @var{msg}.
  1518. @end deftypefun
  1519. @deftypefun size_t starpu_opencl_get_global_mem_size (int @var{devid})
  1520. Return the size of global device memory in bytes.
  1521. @end deftypefun
  1522. @deftypefun void starpu_opencl_get_context (int @var{devid}, {cl_context *}@var{context})
  1523. Places the OpenCL context of the device designated by @var{devid} into @var{context}.
  1524. @end deftypefun
  1525. @deftypefun void starpu_opencl_get_device (int @var{devid}, {cl_device_id *}@var{device})
  1526. Places the cl_device_id corresponding to @var{devid} in @var{device}.
  1527. @end deftypefun
  1528. @deftypefun void starpu_opencl_get_queue (int @var{devid}, {cl_command_queue *}@var{queue})
  1529. Places the command queue of the the device designated by @var{devid} into @var{queue}.
  1530. @end deftypefun
  1531. @deftypefun void starpu_opencl_get_current_context ({cl_context *}@var{context})
  1532. todo
  1533. @end deftypefun
  1534. @deftypefun void starpu_opencl_get_current_queue ({cl_command_queue *}@var{queue})
  1535. todo
  1536. @end deftypefun
  1537. @deftypefun int starpu_opencl_set_kernel_args ({cl_int *}@var{err}, {cl_kernel *}@var{kernel}, ...)
  1538. Sets the arguments of a given kernel. The list of arguments must be given as
  1539. (size_t @var{size_of_the_argument}, cl_mem * @var{pointer_to_the_argument}).
  1540. The last argument must be 0. Returns the number of arguments that were
  1541. successfully set. In case of failure, @var{err} is set to the error returned by
  1542. OpenCL.
  1543. @end deftypefun
  1544. @node Compiling OpenCL kernels
  1545. @subsection Compiling OpenCL kernels
  1546. Source codes for OpenCL kernels can be stored in a file or in a
  1547. string. StarPU provides functions to build the program executable for
  1548. each available OpenCL device as a @code{cl_program} object. This
  1549. program executable can then be loaded within a specific queue as
  1550. explained in the next section. These are only helpers, Applications
  1551. can also fill a @code{starpu_opencl_program} array by hand for more advanced
  1552. use (e.g. different programs on the different OpenCL devices, for
  1553. relocation purpose for instance).
  1554. @deftp {Data Type} {struct starpu_opencl_program}
  1555. todo
  1556. @end deftp
  1557. @deftypefun int starpu_opencl_load_opencl_from_file ({const char} *@var{source_file_name}, {struct starpu_opencl_program} *@var{opencl_programs}, {const char}* @var{build_options})
  1558. @anchor{starpu_opencl_load_opencl_from_file}
  1559. This function compiles an OpenCL source code stored in a file.
  1560. @end deftypefun
  1561. @deftypefun int starpu_opencl_load_opencl_from_string ({const char} *@var{opencl_program_source}, {struct starpu_opencl_program} *@var{opencl_programs}, {const char}* @var{build_options})
  1562. This function compiles an OpenCL source code stored in a string.
  1563. @end deftypefun
  1564. @deftypefun int starpu_opencl_unload_opencl ({struct starpu_opencl_program} *@var{opencl_programs})
  1565. This function unloads an OpenCL compiled code.
  1566. @end deftypefun
  1567. @node Loading OpenCL kernels
  1568. @subsection Loading OpenCL kernels
  1569. @deftypefun int starpu_opencl_load_kernel (cl_kernel *@var{kernel}, cl_command_queue *@var{queue}, {struct starpu_opencl_program} *@var{opencl_programs}, {const char} *@var{kernel_name}, int @var{devid})
  1570. TODO
  1571. @end deftypefun
  1572. @deftypefun int starpu_opencl_release_kernel (cl_kernel @var{kernel})
  1573. TODO
  1574. @end deftypefun
  1575. @node OpenCL statistics
  1576. @subsection OpenCL statistics
  1577. @deftypefun int starpu_opencl_collect_stats (cl_event @var{event})
  1578. This function allows to collect statistics on a kernel execution.
  1579. After termination of the kernels, the OpenCL codelet should call this function
  1580. to pass it the even returned by @code{clEnqueueNDRangeKernel}, to let StarPU
  1581. collect statistics about the kernel execution (used cycles, consumed power).
  1582. @end deftypefun
  1583. @node Cell extensions
  1584. @section Cell extensions
  1585. nothing yet.
  1586. @node Miscellaneous helpers
  1587. @section Miscellaneous helpers
  1588. @deftypefun int starpu_data_cpy (starpu_data_handle_t @var{dst_handle}, starpu_data_handle_t @var{src_handle}, int @var{asynchronous}, void (*@var{callback_func})(void*), void *@var{callback_arg})
  1589. Copy the content of the @var{src_handle} into the @var{dst_handle} handle.
  1590. The @var{asynchronous} parameter indicates whether the function should
  1591. block or not. In the case of an asynchronous call, it is possible to
  1592. synchronize with the termination of this operation either by the means of
  1593. implicit dependencies (if enabled) or by calling
  1594. @code{starpu_task_wait_for_all()}. If @var{callback_func} is not @code{NULL},
  1595. this callback function is executed after the handle has been copied, and it is
  1596. given the @var{callback_arg} pointer as argument.
  1597. @end deftypefun
  1598. @deftypefun void starpu_execute_on_each_worker (void (*@var{func})(void *), void *@var{arg}, uint32_t @var{where})
  1599. This function executes the given function on a subset of workers.
  1600. When calling this method, the offloaded function specified by the first argument is
  1601. executed by every StarPU worker that may execute the function.
  1602. The second argument is passed to the offloaded function.
  1603. The last argument specifies on which types of processing units the function
  1604. should be executed. Similarly to the @var{where} field of the
  1605. @code{struct starpu_codelet} structure, it is possible to specify that the function
  1606. should be executed on every CUDA device and every CPU by passing
  1607. @code{STARPU_CPU|STARPU_CUDA}.
  1608. This function blocks until the function has been executed on every appropriate
  1609. processing units, so that it may not be called from a callback function for
  1610. instance.
  1611. @end deftypefun