starpu.texi 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813
  1. \input texinfo @c -*-texinfo-*-
  2. @c %**start of header
  3. @setfilename starpu.info
  4. @settitle StarPU
  5. @c %**end of header
  6. @setchapternewpage odd
  7. @titlepage
  8. @title StarPU
  9. @page
  10. @vskip 0pt plus 1filll
  11. @comment For the @value{version-GCC} Version*
  12. @end titlepage
  13. @summarycontents
  14. @contents
  15. @page
  16. @node Top
  17. @top Preface
  18. @cindex Preface
  19. This manual documents the usage of StarPU.
  20. @comment
  21. @comment When you add a new menu item, please keep the right hand
  22. @comment aligned to the same column. Do not use tabs. This provides
  23. @comment better formatting.
  24. @comment
  25. @menu
  26. * Introduction:: A basic introduction to using StarPU
  27. * Installing StarPU:: How to configure, build and install StarPU
  28. * Using StarPU:: How to run StarPU application
  29. * Basic Examples:: Basic examples of the use of StarPU
  30. * Performance feedback:: Performance debugging tools
  31. * Configuring StarPU:: How to configure StarPU
  32. * StarPU API:: The API to use StarPU
  33. * Advanced Topics:: Advanced use of StarPU
  34. * Full source code for the 'Scaling a Vector' example::
  35. @end menu
  36. @c ---------------------------------------------------------------------
  37. @c Introduction to StarPU
  38. @c ---------------------------------------------------------------------
  39. @node Introduction
  40. @chapter Introduction to StarPU
  41. @menu
  42. * Motivation:: Why StarPU ?
  43. * StarPU in a Nutshell:: The Fundamentals of StarPU
  44. @end menu
  45. @node Motivation
  46. @section Motivation
  47. @c complex machines with heterogeneous cores/devices
  48. The use of specialized hardware such as accelerators or coprocessors offers an
  49. interesting approach to overcome the physical limits encountered by processor
  50. architects. As a result, many machines are now equipped with one or several
  51. accelerators (e.g. a GPU), in addition to the usual processor(s). While a lot of
  52. efforts have been devoted to offload computation onto such accelerators, very
  53. little attention as been paid to portability concerns on the one hand, and to the
  54. possibility of having heterogeneous accelerators and processors to interact on the other hand.
  55. StarPU is a runtime system that offers support for heterogeneous multicore
  56. architectures, it not only offers a unified view of the computational resources
  57. (i.e. CPUs and accelerators at the same time), but it also takes care of
  58. efficiently mapping and executing tasks onto an heterogeneous machine while
  59. transparently handling low-level issues in a portable fashion.
  60. @c this leads to a complicated distributed memory design
  61. @c which is not (easily) manageable by hand
  62. @c added value/benefits of StarPU
  63. @c - portability
  64. @c - scheduling, perf. portability
  65. @node StarPU in a Nutshell
  66. @section StarPU in a Nutshell
  67. @menu
  68. * Codelet and Tasks::
  69. * StarPU Data Management Library::
  70. * Research Papers::
  71. @end menu
  72. From a programming point of view, StarPU is not a new language but a library
  73. that executes tasks explicitly submitted by the application. The data that a
  74. task manipulates are automatically transferred onto the accelerator so that the
  75. programmer does not have to take care of complex data movements. StarPU also
  76. takes particular care of scheduling those tasks efficiently and allows
  77. scheduling experts to implement custom scheduling policies in a portable
  78. fashion.
  79. @c explain the notion of codelet and task (i.e. g(A, B)
  80. @node Codelet and Tasks
  81. @subsection Codelet and Tasks
  82. One of StarPU primary data structure is the @b{codelet}. A codelet describes a
  83. computational kernel that can possibly be implemented on multiple architectures
  84. such as a CPU, a CUDA device or a Cell's SPU.
  85. @c TODO insert illustration f : f_spu, f_cpu, ...
  86. Another important data structure is the @b{task}. Executing a StarPU task
  87. consists in applying a codelet on a data set, on one of the architectures on
  88. which the codelet is implemented. In addition to the codelet that a task
  89. implements, it also describes which data are accessed, and how they are
  90. accessed during the computation (read and/or write).
  91. StarPU tasks are asynchronous: submitting a task to StarPU is a non-blocking
  92. operation. The task structure can also specify a @b{callback} function that is
  93. called once StarPU has properly executed the task. It also contains optional
  94. fields that the application may use to give hints to the scheduler (such as
  95. priority levels).
  96. A task may be identified by a unique 64-bit number which we refer as a @b{tag}.
  97. Task dependencies can be enforced either by the means of callback functions, or
  98. by expressing dependencies between tags.
  99. @c TODO insert illustration f(Ar, Brw, Cr) + ..
  100. @c DSM
  101. @node StarPU Data Management Library
  102. @subsection StarPU Data Management Library
  103. Because StarPU schedules tasks at runtime, data transfers have to be
  104. done automatically and ``just-in-time'' between processing units,
  105. relieving the application programmer from explicit data transfers.
  106. Moreover, to avoid unnecessary transfers, StarPU keeps data
  107. where it was last needed, even if was modified there, and it
  108. allows multiple copies of the same data to reside at the same time on
  109. several processing units as long as it is not modified.
  110. @node Research Papers
  111. @subsection Research Papers
  112. Research papers on StarPU can be found on
  113. @indicateurl{http://runtime.bordeaux.inria.fr/Publis/Keyword/STARPU.html}
  114. Notably a good overview in the research report
  115. @indicateurl{http://hal.archives-ouvertes.fr/inria-00467677}
  116. @c ---------------------------------------------------------------------
  117. @c Installing StarPU
  118. @c ---------------------------------------------------------------------
  119. @node Installing StarPU
  120. @chapter Installing StarPU
  121. @menu
  122. * Downloading StarPU::
  123. * Configuration of StarPU::
  124. * Building and Installing StarPU::
  125. @end menu
  126. StarPU can be built and installed by the standard means of the GNU
  127. autotools. The following chapter is intended to briefly remind how these tools
  128. can be used to install StarPU.
  129. @node Downloading StarPU
  130. @section Downloading StarPU
  131. @menu
  132. * Getting Sources::
  133. * Optional dependencies::
  134. @end menu
  135. @node Getting Sources
  136. @subsection Getting Sources
  137. The source code is managed by a Subversion server hosted by the
  138. InriaGforge. To get the source code, you need:
  139. @itemize
  140. @item
  141. To install the client side of the software Subversion if it is
  142. not already available on your system. The software can be obtained from
  143. @indicateurl{http://subversion.tigris.org}.
  144. @item
  145. You can check out the project's SVN repository through anonymous
  146. access. This will provide you with a read access to the
  147. repository.
  148. You can also choose to become a member of the project @code{starpu}.
  149. For this, you first need to get an account to the gForge server. You
  150. can then send a request to join the project
  151. (@indicateurl{https://gforge.inria.fr/project/request.php?group_id=1570}).
  152. @item
  153. More information on how to get a gForge account, to become a member of
  154. a project, or on any other related task can be obtained from the
  155. InriaGforge at @indicateurl{https://gforge.inria.fr/}. The most important
  156. thing is to upload your public SSH key on the gForge server (see the
  157. FAQ at @indicateurl{http://siteadmin.gforge.inria.fr/FAQ.html#Q6} for
  158. instructions).
  159. @end itemize
  160. You can now check out the latest version from the Subversion server:
  161. @itemize
  162. @item
  163. using the anonymous access via svn:
  164. @example
  165. % svn checkout svn://scm.gforge.inria.fr/svn/starpu/trunk
  166. @end example
  167. @item
  168. using the anonymous access via https:
  169. @example
  170. % svn checkout --username anonsvn https://scm.gforge.inria.fr/svn/starpu/trunk
  171. @end example
  172. The password is @code{anonsvn}.
  173. @item
  174. using your gForge account
  175. @example
  176. % svn checkout svn+ssh://<login>@@scm.gforge.inria.fr/svn/starpu/trunk
  177. @end example
  178. @end itemize
  179. These steps require to run autoconf and automake to generate the
  180. @code{./configure} script. This can be done by calling
  181. @code{./autogen.sh}. The required version for autoconf is 2.60 or
  182. higher.
  183. @example
  184. % ./autogen.sh
  185. @end example
  186. If the autotools are not available on your machine or not recent
  187. enough, you can choose to download the latest nightly tarball, which
  188. is provided with a @code{configure} script.
  189. @example
  190. % wget http://starpu.gforge.inria.fr/testing/starpu-nightly-latest.tar.gz
  191. @end example
  192. @node Optional dependencies
  193. @subsection Optional dependencies
  194. The topology discovery library, hwloc, is not mandatory to use StarPU
  195. but strongly recommended. It allows to increase performance, and to
  196. perform some topology aware scheduling.
  197. hwloc is available in major distributions and for most OSes and can be
  198. downloaded from @indicateurl{http://www.open-mpi.org/software/hwloc}.
  199. @node Configuration of StarPU
  200. @section Configuration of StarPU
  201. @menu
  202. * Generating Makefiles and configuration scripts::
  203. * Running the configuration::
  204. @end menu
  205. @node Generating Makefiles and configuration scripts
  206. @subsection Generating Makefiles and configuration scripts
  207. This step is not necessary when using the tarball releases of StarPU. If you
  208. are using the source code from the svn repository, you first need to generate
  209. the configure scripts and the Makefiles.
  210. @example
  211. % ./autogen.sh
  212. @end example
  213. @node Running the configuration
  214. @subsection Running the configuration
  215. @example
  216. % ./configure
  217. @end example
  218. Details about options that are useful to give to @code{./configure} are given in
  219. @ref{Compilation configuration}.
  220. @node Building and Installing StarPU
  221. @section Building and Installing StarPU
  222. @menu
  223. * Building::
  224. * Sanity Checks::
  225. * Installing::
  226. @end menu
  227. @node Building
  228. @subsection Building
  229. @example
  230. % make
  231. @end example
  232. @node Sanity Checks
  233. @subsection Sanity Checks
  234. In order to make sure that StarPU is working properly on the system, it is also
  235. possible to run a test suite.
  236. @example
  237. % make check
  238. @end example
  239. @node Installing
  240. @subsection Installing
  241. In order to install StarPU at the location that was specified during
  242. configuration:
  243. @example
  244. % make install
  245. @end example
  246. @c ---------------------------------------------------------------------
  247. @c Using StarPU
  248. @c ---------------------------------------------------------------------
  249. @node Using StarPU
  250. @chapter Using StarPU
  251. @menu
  252. * Setting flags for compiling and linking applications::
  253. * Running a basic StarPU application::
  254. @end menu
  255. @node Setting flags for compiling and linking applications
  256. @section Setting flags for compiling and linking applications
  257. Compiling and linking an application against StarPU may require to use
  258. specific flags or libraries (for instance @code{CUDA} or @code{libspe2}).
  259. To this end, it is possible to use the @code{pkg-config} tool.
  260. If StarPU was not installed at some standard location, the path of StarPU's
  261. library must be specified in the @code{PKG_CONFIG_PATH} environment variable so
  262. that @code{pkg-config} can find it. For example if StarPU was installed in
  263. @code{$prefix_dir}:
  264. @example
  265. % PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$prefix_dir/lib/pkgconfig
  266. @end example
  267. The flags required to compile or link against StarPU are then
  268. accessible with the following commands:
  269. @example
  270. % pkg-config --cflags libstarpu # options for the compiler
  271. % pkg-config --libs libstarpu # options for the linker
  272. @end example
  273. @node Running a basic StarPU application
  274. @section Running a basic StarPU application
  275. Basic examples using StarPU have been built in the directory
  276. @code{$prefix_dir/lib/starpu/examples/}. You can for example run the
  277. example @code{vector_scal}.
  278. @example
  279. % $prefix_dir/lib/starpu/examples/vector_scal
  280. BEFORE : First element was 1.000000
  281. AFTER First element is 3.140000
  282. %
  283. @end example
  284. When StarPU is used for the first time, the directory
  285. @code{$HOME/.starpu/} is created, performance models will be stored in
  286. that directory.
  287. Please note that buses are benchmarked when StarPU is launched for the
  288. first time. This may take a few minutes, or less if @code{hwloc} is
  289. installed. This step is done only once per user and per machine.
  290. @c ---------------------------------------------------------------------
  291. @c Basic Examples
  292. @c ---------------------------------------------------------------------
  293. @node Basic Examples
  294. @chapter Basic Examples
  295. @menu
  296. * Compiling and linking options::
  297. * Hello World:: Submitting Tasks
  298. * Scaling a Vector:: Manipulating Data
  299. * Vector Scaling on an Hybrid CPU/GPU Machine:: Handling Heterogeneous Architectures
  300. * Task and Worker Profiling::
  301. * Partitioning Data:: Partitioning Data
  302. * Performance model example::
  303. * Theoretical lower bound on execution time::
  304. * More examples:: More examples shipped with StarPU
  305. @end menu
  306. @node Compiling and linking options
  307. @section Compiling and linking options
  308. Let's suppose StarPU has been installed in the directory
  309. @code{$STARPU_DIR}. As explained in @ref{Setting flags for compiling and linking applications},
  310. the variable @code{PKG_CONFIG_PATH} needs to be set. It is also
  311. necessary to set the variable @code{LD_LIBRARY_PATH} to locate dynamic
  312. libraries at runtime.
  313. @example
  314. % PKG_CONFIG_PATH=$STARPU_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
  315. % LD_LIBRARY_PATH=$STARPU_DIR/lib:$LD_LIBRARY_PATH
  316. @end example
  317. The Makefile could for instance contain the following lines to define which
  318. options must be given to the compiler and to the linker:
  319. @cartouche
  320. @example
  321. CFLAGS += $$(pkg-config --cflags libstarpu)
  322. LDFLAGS += $$(pkg-config --libs libstarpu)
  323. @end example
  324. @end cartouche
  325. @node Hello World
  326. @section Hello World
  327. @menu
  328. * Required Headers::
  329. * Defining a Codelet::
  330. * Submitting a Task::
  331. * Execution of Hello World::
  332. @end menu
  333. In this section, we show how to implement a simple program that submits a task to StarPU.
  334. @node Required Headers
  335. @subsection Required Headers
  336. The @code{starpu.h} header should be included in any code using StarPU.
  337. @cartouche
  338. @smallexample
  339. #include <starpu.h>
  340. @end smallexample
  341. @end cartouche
  342. @node Defining a Codelet
  343. @subsection Defining a Codelet
  344. @cartouche
  345. @smallexample
  346. void cpu_func(void *buffers[], void *cl_arg)
  347. @{
  348. float *array = cl_arg;
  349. printf("Hello world (array = @{%f, %f@} )\n", array[0], array[1]);
  350. @}
  351. starpu_codelet cl =
  352. @{
  353. .where = STARPU_CPU,
  354. .cpu_func = cpu_func,
  355. .nbuffers = 0
  356. @};
  357. @end smallexample
  358. @end cartouche
  359. A codelet is a structure that represents a computational kernel. Such a codelet
  360. may contain an implementation of the same kernel on different architectures
  361. (e.g. CUDA, Cell's SPU, x86, ...).
  362. The @code{nbuffers} field specifies the number of data buffers that are
  363. manipulated by the codelet: here the codelet does not access or modify any data
  364. that is controlled by our data management library. Note that the argument
  365. passed to the codelet (the @code{cl_arg} field of the @code{starpu_task}
  366. structure) does not count as a buffer since it is not managed by our data
  367. management library.
  368. @c TODO need a crossref to the proper description of "where" see bla for more ...
  369. We create a codelet which may only be executed on the CPUs. The @code{where}
  370. field is a bitmask that defines where the codelet may be executed. Here, the
  371. @code{STARPU_CPU} value means that only CPUs can execute this codelet
  372. (@pxref{Codelets and Tasks} for more details on this field).
  373. When a CPU core executes a codelet, it calls the @code{cpu_func} function,
  374. which @emph{must} have the following prototype:
  375. @code{void (*cpu_func)(void *buffers[], void *cl_arg);}
  376. In this example, we can ignore the first argument of this function which gives a
  377. description of the input and output buffers (e.g. the size and the location of
  378. the matrices). The second argument is a pointer to a buffer passed as an
  379. argument to the codelet by the means of the @code{cl_arg} field of the
  380. @code{starpu_task} structure.
  381. @c TODO rewrite so that it is a little clearer ?
  382. Be aware that this may be a pointer to a
  383. @emph{copy} of the actual buffer, and not the pointer given by the programmer:
  384. if the codelet modifies this buffer, there is no guarantee that the initial
  385. buffer will be modified as well: this for instance implies that the buffer
  386. cannot be used as a synchronization medium.
  387. @node Submitting a Task
  388. @subsection Submitting a Task
  389. @cartouche
  390. @smallexample
  391. void callback_func(void *callback_arg)
  392. @{
  393. printf("Callback function (arg %x)\n", callback_arg);
  394. @}
  395. int main(int argc, char **argv)
  396. @{
  397. /* @b{initialize StarPU} */
  398. starpu_init(NULL);
  399. struct starpu_task *task = starpu_task_create();
  400. task->cl = &cl; /* @b{Pointer to the codelet defined above} */
  401. float array[2] = @{1.0f, -1.0f@};
  402. task->cl_arg = &array;
  403. task->cl_arg_size = sizeof(array);
  404. task->callback_func = callback_func;
  405. task->callback_arg = 0x42;
  406. /* @b{starpu_task_submit will be a blocking call} */
  407. task->synchronous = 1;
  408. /* @b{submit the task to StarPU} */
  409. starpu_task_submit(task);
  410. /* @b{terminate StarPU} */
  411. starpu_shutdown();
  412. return 0;
  413. @}
  414. @end smallexample
  415. @end cartouche
  416. Before submitting any tasks to StarPU, @code{starpu_init} must be called. The
  417. @code{NULL} argument specifies that we use default configuration. Tasks cannot
  418. be submitted after the termination of StarPU by a call to
  419. @code{starpu_shutdown}.
  420. In the example above, a task structure is allocated by a call to
  421. @code{starpu_task_create}. This function only allocates and fills the
  422. corresponding structure with the default settings (@pxref{starpu_task_create}),
  423. but it does not submit the task to StarPU.
  424. @c not really clear ;)
  425. The @code{cl} field is a pointer to the codelet which the task will
  426. execute: in other words, the codelet structure describes which computational
  427. kernel should be offloaded on the different architectures, and the task
  428. structure is a wrapper containing a codelet and the piece of data on which the
  429. codelet should operate.
  430. The optional @code{cl_arg} field is a pointer to a buffer (of size
  431. @code{cl_arg_size}) with some parameters for the kernel
  432. described by the codelet. For instance, if a codelet implements a computational
  433. kernel that multiplies its input vector by a constant, the constant could be
  434. specified by the means of this buffer, instead of registering it.
  435. Once a task has been executed, an optional callback function can be called.
  436. While the computational kernel could be offloaded on various architectures, the
  437. callback function is always executed on a CPU. The @code{callback_arg}
  438. pointer is passed as an argument of the callback. The prototype of a callback
  439. function must be:
  440. @code{void (*callback_function)(void *);}
  441. If the @code{synchronous} field is non-null, task submission will be
  442. synchronous: the @code{starpu_task_submit} function will not return until the
  443. task was executed. Note that the @code{starpu_shutdown} method does not
  444. guarantee that asynchronous tasks have been executed before it returns.
  445. @node Execution of Hello World
  446. @subsection Execution of Hello World
  447. @smallexample
  448. % make hello_world
  449. cc $(pkg-config --cflags libstarpu) $(pkg-config --libs libstarpu) hello_world.c -o hello_world
  450. % ./hello_world
  451. Hello world (array = @{1.000000, -1.000000@} )
  452. Callback function (arg 42)
  453. @end smallexample
  454. @node Scaling a Vector
  455. @section Manipulating Data: Scaling a Vector
  456. The previous example has shown how to submit tasks. In this section,
  457. we show how StarPU tasks can manipulate data. The full source code for
  458. this example is given in @ref{Full source code for the 'Scaling a Vector' example}.
  459. @menu
  460. * Source code of Vector Scaling::
  461. * Execution of Vector Scaling::
  462. @end menu
  463. @node Source code of Vector Scaling
  464. @subsection Source code of Vector Scaling
  465. Programmers can describe the data layout of their application so that StarPU is
  466. responsible for enforcing data coherency and availability across the machine.
  467. Instead of handling complex (and non-portable) mechanisms to perform data
  468. movements, programmers only declare which piece of data is accessed and/or
  469. modified by a task, and StarPU makes sure that when a computational kernel
  470. starts somewhere (e.g. on a GPU), its data are available locally.
  471. Before submitting those tasks, the programmer first needs to declare the
  472. different pieces of data to StarPU using the @code{starpu_*_data_register}
  473. functions. To ease the development of applications for StarPU, it is possible
  474. to describe multiple types of data layout. A type of data layout is called an
  475. @b{interface}. By default, there are different interfaces available in StarPU:
  476. here we will consider the @b{vector interface}.
  477. The following lines show how to declare an array of @code{NX} elements of type
  478. @code{float} using the vector interface:
  479. @cartouche
  480. @smallexample
  481. float vector[NX];
  482. starpu_data_handle vector_handle;
  483. starpu_vector_data_register(&vector_handle, 0, (uintptr_t)vector, NX,
  484. sizeof(vector[0]));
  485. @end smallexample
  486. @end cartouche
  487. The first argument, called the @b{data handle}, is an opaque pointer which
  488. designates the array in StarPU. This is also the structure which is used to
  489. describe which data is used by a task. The second argument is the node number
  490. where the data currently resides. Here it is 0 since the @code{vector} array is in
  491. the main memory. Then comes the pointer @code{vector} where the data can be found,
  492. the number of elements in the vector and the size of each element.
  493. It is possible to construct a StarPU task that will manipulate the
  494. vector and a constant factor.
  495. @cartouche
  496. @smallexample
  497. float factor = 3.14;
  498. struct starpu_task *task = starpu_task_create();
  499. task->cl = &cl; /* @b{Pointer to the codelet defined below} */
  500. task->buffers[0].handle = vector_handle; /* @b{First parameter of the codelet} */
  501. task->buffers[0].mode = STARPU_RW;
  502. task->cl_arg = &factor;
  503. task->cl_arg_size = sizeof(factor);
  504. task->synchronous = 1;
  505. starpu_task_submit(task);
  506. @end smallexample
  507. @end cartouche
  508. Since the factor is a mere float value parameter, it does not need a preliminary registration, and
  509. can just be passed through the @code{cl_arg} pointer like in the previous
  510. example. The vector parameter is described by its handle.
  511. There are two fields in each element of the @code{buffers} array.
  512. @code{handle} is the handle of the data, and @code{mode} specifies how the
  513. kernel will access the data (@code{STARPU_R} for read-only, @code{STARPU_W} for
  514. write-only and @code{STARPU_RW} for read and write access).
  515. The definition of the codelet can be written as follows:
  516. @cartouche
  517. @smallexample
  518. void scal_cpu_func(void *buffers[], void *cl_arg)
  519. @{
  520. unsigned i;
  521. float *factor = cl_arg;
  522. /* length of the vector */
  523. unsigned n = STARPU_VECTOR_GET_NX(buffers[0]);
  524. /* local copy of the vector pointer */
  525. float *val = (float *)STARPU_VECTOR_GET_PTR(buffers[0]);
  526. for (i = 0; i < n; i++)
  527. val[i] *= *factor;
  528. @}
  529. starpu_codelet cl = @{
  530. .where = STARPU_CPU,
  531. .cpu_func = scal_cpu_func,
  532. .nbuffers = 1
  533. @};
  534. @end smallexample
  535. @end cartouche
  536. The second argument of the @code{scal_cpu_func} function contains a pointer to the
  537. parameters of the codelet (given in @code{task->cl_arg}), so that we read the
  538. constant factor from this pointer. The first argument is an array that gives
  539. a description of all the buffers passed in the @code{task->buffers}@ array. The
  540. size of this array is given by the @code{nbuffers} field of the codelet
  541. structure. For the sake of generality, this array contains pointers to the
  542. different interfaces describing each buffer. In the case of the @b{vector
  543. interface}, the location of the vector (resp. its length) is accessible in the
  544. @code{ptr} (resp. @code{nx}) of this array. Since the vector is accessed in a
  545. read-write fashion, any modification will automatically affect future accesses
  546. to this vector made by other tasks.
  547. @node Execution of Vector Scaling
  548. @subsection Execution of Vector Scaling
  549. @smallexample
  550. % make vector_scal
  551. cc $(pkg-config --cflags libstarpu) $(pkg-config --libs libstarpu) vector_scal.c -o vector_scal
  552. % ./vector_scal
  553. 0.000000 3.000000 6.000000 9.000000 12.000000
  554. @end smallexample
  555. @node Vector Scaling on an Hybrid CPU/GPU Machine
  556. @section Vector Scaling on an Hybrid CPU/GPU Machine
  557. Contrary to the previous examples, the task submitted in this example may not
  558. only be executed by the CPUs, but also by a CUDA device.
  559. @menu
  560. * Definition of the CUDA Codelet::
  561. * Definition of the OpenCL Codelet::
  562. * Definition of the Main Code::
  563. * Execution of Hybrid Vector Scaling::
  564. @end menu
  565. @node Definition of the CUDA Codelet
  566. @subsection Definition of the CUDA Codelet
  567. The CUDA implementation can be written as follows. It needs to be
  568. compiled with a CUDA compiler such as nvcc, the NVIDIA CUDA compiler
  569. driver.
  570. @cartouche
  571. @smallexample
  572. #include <starpu.h>
  573. static __global__ void vector_mult_cuda(float *val, unsigned n,
  574. float factor)
  575. @{
  576. unsigned i;
  577. for(i = 0 ; i < n ; i++)
  578. val[i] *= factor;
  579. @}
  580. extern "C" void scal_cuda_func(void *buffers[], void *_args)
  581. @{
  582. float *factor = (float *)_args;
  583. /* length of the vector */
  584. unsigned n = STARPU_VECTOR_GET_NX(buffers[0]);
  585. /* local copy of the vector pointer */
  586. float *val = (float *)STARPU_VECTOR_GET_PTR(buffers[0]);
  587. @i{ vector_mult_cuda<<<1,1>>>(val, n, *factor);}
  588. @i{ cudaThreadSynchronize();}
  589. @}
  590. @end smallexample
  591. @end cartouche
  592. @node Definition of the OpenCL Codelet
  593. @subsection Definition of the OpenCL Codelet
  594. The OpenCL implementation can be written as follows. StarPU provides
  595. tools to compile a OpenCL codelet stored in a file.
  596. @cartouche
  597. @smallexample
  598. __kernel void vector_mult_opencl(__global float* val, int nx, float factor)
  599. @{
  600. const int i = get_global_id(0);
  601. if (i < nx) @{
  602. val[i] *= factor;
  603. @}
  604. @}
  605. @end smallexample
  606. @end cartouche
  607. @cartouche
  608. @smallexample
  609. #include <starpu.h>
  610. @i{#include <starpu_opencl.h>}
  611. @i{extern struct starpu_opencl_program programs;}
  612. void scal_opencl_func(void *buffers[], void *_args)
  613. @{
  614. float *factor = _args;
  615. @i{ int id, devid, err;}
  616. @i{ cl_kernel kernel;}
  617. @i{ cl_command_queue queue;}
  618. /* length of the vector */
  619. unsigned n = STARPU_VECTOR_GET_NX(buffers[0]);
  620. /* local copy of the vector pointer */
  621. float *val = (float *)STARPU_VECTOR_GET_PTR(buffers[0]);
  622. @i{ id = starpu_worker_get_id();}
  623. @i{ devid = starpu_worker_get_devid(id);}
  624. @i{ err = starpu_opencl_load_kernel(&kernel, &queue, &programs,}
  625. @i{ "vector_mult_opencl", devid); /* @b{Name of the codelet defined above} */}
  626. @i{ if (err != CL_SUCCESS) STARPU_OPENCL_REPORT_ERROR(err);}
  627. @i{ err = clSetKernelArg(kernel, 0, sizeof(cl_mem), &val);}
  628. @i{ err |= clSetKernelArg(kernel, 1, sizeof(n), &n);}
  629. @i{ err |= clSetKernelArg(kernel, 2, sizeof(*factor), factor);}
  630. @i{ if (err) STARPU_OPENCL_REPORT_ERROR(err);}
  631. @i{ @{}
  632. @i{ size_t global=1;}
  633. @i{ size_t local=1;}
  634. @i{ err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global, &local, 0, NULL, NULL);}
  635. @i{ if (err != CL_SUCCESS) STARPU_OPENCL_REPORT_ERROR(err);}
  636. @i{ @}}
  637. @i{ clFinish(queue);}
  638. @i{ starpu_opencl_release_kernel(kernel);}
  639. @}
  640. @end smallexample
  641. @end cartouche
  642. @node Definition of the Main Code
  643. @subsection Definition of the Main Code
  644. The CPU implementation is the same as in the previous section.
  645. Here is the source of the main application. You can notice the value of the
  646. field @code{where} for the codelet. We specify
  647. @code{STARPU_CPU|STARPU_CUDA|STARPU_OPENCL} to indicate to StarPU that the codelet
  648. can be executed either on a CPU or on a CUDA or an OpenCL device.
  649. @cartouche
  650. @smallexample
  651. #include <starpu.h>
  652. #define NX 2048
  653. extern void scal_cuda_func(void *buffers[], void *_args);
  654. extern void scal_cpu_func(void *buffers[], void *_args);
  655. extern void scal_opencl_func(void *buffers[], void *_args);
  656. /* @b{Definition of the codelet} */
  657. static starpu_codelet cl = @{
  658. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL; /* @b{It can be executed on a CPU,} */
  659. /* @b{on a CUDA device, or on an OpenCL device} */
  660. .cuda_func = scal_cuda_func;
  661. .cpu_func = scal_cpu_func;
  662. .opencl_func = scal_opencl_func;
  663. .nbuffers = 1;
  664. @}
  665. #ifdef STARPU_USE_OPENCL
  666. /* @b{The compiled version of the OpenCL program} */
  667. struct starpu_opencl_program programs;
  668. #endif
  669. int main(int argc, char **argv)
  670. @{
  671. float *vector;
  672. int i, ret;
  673. float factor=3.0;
  674. struct starpu_task *task;
  675. starpu_data_handle vector_handle;
  676. starpu_init(NULL); /* @b{Initialising StarPU} */
  677. #ifdef STARPU_USE_OPENCL
  678. starpu_opencl_load_opencl_from_file("examples/basic_examples/vector_scal_opencl_codelet.cl",
  679. &programs);
  680. #endif
  681. vector = malloc(NX*sizeof(vector[0]));
  682. assert(vector);
  683. for(i=0 ; i<NX ; i++) vector[i] = i;
  684. @end smallexample
  685. @end cartouche
  686. @cartouche
  687. @smallexample
  688. /* @b{Registering data within StarPU} */
  689. starpu_vector_data_register(&vector_handle, 0, (uintptr_t)vector,
  690. NX, sizeof(vector[0]));
  691. /* @b{Definition of the task} */
  692. task = starpu_task_create();
  693. task->cl = &cl;
  694. task->buffers[0].handle = vector_handle;
  695. task->buffers[0].mode = STARPU_RW;
  696. task->cl_arg = &factor;
  697. task->cl_arg_size = sizeof(factor);
  698. @end smallexample
  699. @end cartouche
  700. @cartouche
  701. @smallexample
  702. /* @b{Submitting the task} */
  703. ret = starpu_task_submit(task);
  704. if (ret == -ENODEV) @{
  705. fprintf(stderr, "No worker may execute this task\n");
  706. return 1;
  707. @}
  708. /* @b{Waiting for its termination} */
  709. starpu_task_wait_for_all();
  710. /* @b{Update the vector in RAM} */
  711. starpu_data_acquire(vector_handle, STARPU_R);
  712. @end smallexample
  713. @end cartouche
  714. @cartouche
  715. @smallexample
  716. /* @b{Access the data} */
  717. for(i=0 ; i<NX; i++) @{
  718. fprintf(stderr, "%f ", vector[i]);
  719. @}
  720. fprintf(stderr, "\n");
  721. /* @b{Release the data and shutdown StarPU} */
  722. starpu_data_release(vector_handle);
  723. starpu_shutdown();
  724. return 0;
  725. @}
  726. @end smallexample
  727. @end cartouche
  728. @node Execution of Hybrid Vector Scaling
  729. @subsection Execution of Hybrid Vector Scaling
  730. The Makefile given at the beginning of the section must be extended to
  731. give the rules to compile the CUDA source code. Note that the source
  732. file of the OpenCL codelet does not need to be compiled now, it will
  733. be compiled at run-time when calling the function
  734. @code{starpu_opencl_load_opencl_from_file} (@pxref{starpu_opencl_load_opencl_from_file}).
  735. @cartouche
  736. @smallexample
  737. CFLAGS += $(shell pkg-config --cflags libstarpu)
  738. LDFLAGS += $(shell pkg-config --libs libstarpu)
  739. CC = gcc
  740. vector_scal: vector_scal.o vector_scal_cpu.o vector_scal_cuda.o vector_scal_opencl.o
  741. %.o: %.cu
  742. nvcc $(CFLAGS) $< -c $@
  743. clean:
  744. rm -f vector_scal *.o
  745. @end smallexample
  746. @end cartouche
  747. @smallexample
  748. % make
  749. @end smallexample
  750. and to execute it, with the default configuration:
  751. @smallexample
  752. % ./vector_scal
  753. 0.000000 3.000000 6.000000 9.000000 12.000000
  754. @end smallexample
  755. or for example, by disabling CPU devices:
  756. @smallexample
  757. % STARPU_NCPUS=0 ./vector_scal
  758. 0.000000 3.000000 6.000000 9.000000 12.000000
  759. @end smallexample
  760. or by disabling CUDA devices:
  761. @smallexample
  762. % STARPU_NCUDA=0 ./vector_scal
  763. 0.000000 3.000000 6.000000 9.000000 12.000000
  764. @end smallexample
  765. @node Task and Worker Profiling
  766. @section Task and Worker Profiling
  767. A full example showing how to use the profiling API is available in
  768. the StarPU sources in the directory @code{examples/profiling/}.
  769. @cartouche
  770. @smallexample
  771. struct starpu_task *task = starpu_task_create();
  772. task->cl = &cl;
  773. task->synchronous = 1;
  774. /* We will destroy the task structure by hand so that we can
  775. * query the profiling info before the task is destroyed. */
  776. task->destroy = 0;
  777. starpu_task_submit(task);
  778. /* The task is finished, get profiling information */
  779. struct starpu_task_profiling_info *info = task->profiling_info;
  780. /* How much time did it take before the task started ? */
  781. double delay += starpu_timing_timespec_delay_us(&info->submit_time, &info->start_time);
  782. /* How long was the task execution ? */
  783. double length += starpu_timing_timespec_delay_us(&info->start_time, &info->end_time);
  784. /* We don't need the task structure anymore */
  785. starpu_task_destroy(task);
  786. @end smallexample
  787. @end cartouche
  788. @cartouche
  789. @smallexample
  790. /* Display the occupancy of all workers during the test */
  791. int worker;
  792. for (worker = 0; worker < starpu_worker_get_count(); worker++)
  793. @{
  794. struct starpu_worker_profiling_info worker_info;
  795. int ret = starpu_worker_get_profiling_info(worker, &worker_info);
  796. STARPU_ASSERT(!ret);
  797. double total_time = starpu_timing_timespec_to_us(&worker_info.total_time);
  798. double executing_time = starpu_timing_timespec_to_us(&worker_info.executing_time);
  799. double sleeping_time = starpu_timing_timespec_to_us(&worker_info.sleeping_time);
  800. float executing_ratio = 100.0*executing_time/total_time;
  801. float sleeping_ratio = 100.0*sleeping_time/total_time;
  802. char workername[128];
  803. starpu_worker_get_name(worker, workername, 128);
  804. fprintf(stderr, "Worker %s:\n", workername);
  805. fprintf(stderr, "\ttotal time : %.2lf ms\n", total_time*1e-3);
  806. fprintf(stderr, "\texec time : %.2lf ms (%.2f %%)\n", executing_time*1e-3,
  807. executing_ratio);
  808. fprintf(stderr, "\tblocked time : %.2lf ms (%.2f %%)\n", sleeping_time*1e-3,
  809. sleeping_ratio);
  810. @}
  811. @end smallexample
  812. @end cartouche
  813. @node Partitioning Data
  814. @section Partitioning Data
  815. An existing piece of data can be partitioned in sub parts to be used by different tasks, for instance:
  816. @cartouche
  817. @smallexample
  818. int vector[NX];
  819. starpu_data_handle handle;
  820. /* Declare data to StarPU */
  821. starpu_vector_data_register(&handle, 0, (uintptr_t)vector, NX, sizeof(vector[0]));
  822. /* Partition the vector in PARTS sub-vectors */
  823. starpu_filter f =
  824. @{
  825. .filter_func = starpu_block_filter_func_vector,
  826. .nchildren = PARTS,
  827. .get_nchildren = NULL,
  828. .get_child_ops = NULL
  829. @};
  830. starpu_data_partition(handle, &f);
  831. @end smallexample
  832. @end cartouche
  833. @cartouche
  834. @smallexample
  835. /* Submit a task on each sub-vector */
  836. for (i=0; i<starpu_data_get_nb_children(handle); i++) @{
  837. starpu_data_handle sub_handle = starpu_data_get_sub_data(handle, 1, i);
  838. struct starpu_task *task = starpu_task_create();
  839. task->buffers[0].handle = sub_handle;
  840. task->buffers[0].mode = STARPU_RW;
  841. task->cl = &cl;
  842. task->synchronous = 1;
  843. task->cl_arg = &factor;
  844. task->cl_arg_size = sizeof(factor);
  845. starpu_task_submit(task);
  846. @}
  847. @end smallexample
  848. @end cartouche
  849. Partitioning can be applied several times, see
  850. @code{examples/basic_examples/mult.c} and @code{examples/filters/}.
  851. @node Performance model example
  852. @section Performance model example
  853. To achieve good scheduling, StarPU scheduling policies need to be able to
  854. estimate in advance the duration of a task. This is done by giving to codelets a
  855. performance model. There are several kinds of performance models.
  856. @itemize
  857. @item
  858. Providing an estimation from the application itself (@code{STARPU_COMMON} model type and @code{cost_model} field),
  859. see for instance
  860. @code{examples/common/blas_model.c} and @code{examples/common/blas_model.h}. It can also be provided for each architecture (@code{STARPU_PER_ARCH} model type and @code{per_arch} field)
  861. @item
  862. Measured at runtime (STARPU_HISTORY_BASED model type). This assumes that for a
  863. given set of data input/output sizes, the performance will always be about the
  864. same. This is very true for regular kernels on GPUs for instance (<0.1% error),
  865. and just a bit less true on CPUs (~=1% error). This also assumes that there are
  866. few different sets of data input/output sizes. StarPU will then keep record of
  867. the average time of previous executions on the various processing units, and use
  868. it as an estimation. It will also save it in @code{~/.starpu/sampling/codelets}
  869. for further executions. The following is a small code example.
  870. @cartouche
  871. @smallexample
  872. static struct starpu_perfmodel_t mult_perf_model = @{
  873. .type = STARPU_HISTORY_BASED,
  874. .symbol = "mult_perf_model"
  875. @};
  876. starpu_codelet cl = @{
  877. .where = STARPU_CPU,
  878. .cpu_func = cpu_mult,
  879. .nbuffers = 3,
  880. /* for the scheduling policy to be able to use performance models */
  881. .model = &mult_perf_model
  882. @};
  883. @end smallexample
  884. @end cartouche
  885. @item
  886. Measured at runtime and refined by regression (STARPU_REGRESSION_BASED model
  887. type). This still assumes performance regularity, but can work with various data
  888. input sizes, by applying a*n^b+c regression over observed execution times.
  889. @end itemize
  890. @node Theoretical lower bound on execution time
  891. @section Theoretical lower bound on execution time
  892. For kernels with history-based performance models, StarPU can very easily provide a theoretical lower
  893. bound for the execution time of a whole set of tasks. See for
  894. instance @code{examples/lu/lu_example.c}: before submitting tasks,
  895. call @code{starpu_bound_start}, and after complete execution, call
  896. @code{starpu_bound_stop}. @code{starpu_bound_print_lp} or
  897. @code{starpu_bound_print_mps} can then be used to output a Linear Programming
  898. problem corresponding to the schedule of your tasks. Run it through
  899. @code{lp_solve} or any other linear programming solver, and that will give you a
  900. lower bound for the total execution time of your tasks. If StarPU was compiled
  901. with the glpk library installed, @code{starpu_bound_compute} can be used to
  902. solve it immediately and get the optimized minimum. Its @code{integer}
  903. parameter allows to decide whether integer resolution should be computed
  904. and returned.
  905. The @code{deps} parameter tells StarPU whether to take tasks and implicit data
  906. dependencies into account. It must be understood that the linear programming
  907. problem size is quadratic with the number of tasks and thus the time to solve it
  908. will be very long, it could be minutes for just a few dozen tasks. You should
  909. probably use @code{lp_solve -timeout 1 test.pl -wmps test.mps} to convert the
  910. problem to MPS format and then use a better solver, @code{glpsol} might be
  911. better than @code{lp_solve} for instance (the @code{--pcost} option may be
  912. useful), but sometimes doesn't manage to converge. @code{cbc} might look
  913. slower, but it is parallel. Be sure to try at least all the @code{-B} options
  914. of @code{lp_solve}. For instance, we often just use
  915. @code{lp_solve -cc -B1 -Bb -Bg -Bp -Bf -Br -BG -Bd -Bs -BB -Bo -Bc -Bi} , and
  916. the @code{-gr} option can also be quite useful.
  917. Setting @code{deps} to 0 will only take into account the actual computations
  918. on processing units. It however still properly takes into account the varying
  919. performances of kernels and processing units, which is quite more accurate than
  920. just comparing StarPU performances with the fastest of the kernels being used.
  921. The @code{prio} parameter tells StarPU whether to simulate taking into account
  922. the priorities as the StarPU scheduler would, i.e. schedule prioritized
  923. tasks before less prioritized tasks, to check to which extend this results
  924. to a less optimal solution. This increases even more computation time.
  925. Note that all this however doesn't take into account data transfer, which is
  926. assumed to be completely overlapped.
  927. @node More examples
  928. @section More examples
  929. More examples are available in the StarPU sources in the @code{examples/}
  930. directory. Simple examples include:
  931. @table @asis
  932. @item @code{incrementer/}:
  933. Trivial incrementation test.
  934. @item @code{basic_examples/}:
  935. Simple documented Hello world (as shown in @ref{Hello World}), vector/scalar product (as shown
  936. in @ref{Vector Scaling on an Hybrid CPU/GPU Machine}), matrix
  937. product examples (as shown in @ref{Performance model example}), an example using the blocked matrix data
  938. interface, and an example using the variable data interface.
  939. @item @code{matvecmult/}:
  940. OpenCL example from NVidia, adapted to StarPU.
  941. @item @code{axpy/}:
  942. AXPY CUBLAS operation adapted to StarPU.
  943. @item @code{fortran/}:
  944. Example of Fortran bindings.
  945. @end table
  946. More advanced examples include:
  947. @table @asis
  948. @item @code{filters/}:
  949. Examples using filters, as shown in @ref{Partitioning Data}.
  950. @item @code{lu/}:
  951. LU matrix factorization.
  952. @end table
  953. @c ---------------------------------------------------------------------
  954. @c Performance feedback
  955. @c ---------------------------------------------------------------------
  956. @node Performance feedback
  957. @chapter Performance feedback
  958. @menu
  959. * On-line:: On-line performance feedback
  960. * Off-line:: Off-line performance feedback
  961. @end menu
  962. @node On-line
  963. @section On-line performance feedback
  964. @menu
  965. * Enabling monitoring:: Enabling on-line performance monitoring
  966. * Task feedback:: Per-task feedback
  967. * Codelet feedback:: Per-codelet feedback
  968. * Worker feedback:: Per-worker feedback
  969. * Bus feedback:: Bus-related feedback
  970. @end menu
  971. @node Enabling monitoring
  972. @subsection Enabling on-line performance monitoring
  973. In order to enable online performance monitoring, the application must call
  974. @code{starpu_profiling_status_set(STARPU_PROFILING_ENABLE)}. It is possible to
  975. detect whether monitoring is already enabled or not by calling
  976. @code{starpu_profiling_status_get()}. Enabling monitoring also reinitialize all
  977. previously collected feedback.
  978. Likewise, performance monitoring is stopped by calling
  979. @code{starpu_profiling_status_set(STARPU_PROFILING_DISABLE)}. Note that this
  980. does not reset the performance counters so that the application may consult
  981. them later on.
  982. @node Task feedback
  983. @subsection Per-task feedback
  984. If profiling is enabled, a pointer to a @code{starpu_task_profiling_info}
  985. structure is put in the @code{.profiling_info} field of the @code{starpu_task}
  986. structure when a task terminates.
  987. This structure is automatically destroyed when the task structure is destroyed,
  988. either automatically or by calling @code{starpu_task_destroy}.
  989. The @code{starpu_task_profiling_info} structure indicates the date when the
  990. task was submitted (@code{submit_time}), started (@code{start_time}), and
  991. terminated (@code{end_time}), relative to the initialization of
  992. StarPU with @code{starpu_init}. It also specifies the identifier of the worker
  993. that has executed the task (@code{workerid}).
  994. These date are stored as @code{timespec} structures which the user may convert
  995. into micro-seconds using the @code{starpu_timing_timespec_to_us} helper
  996. function.
  997. It it worth noting that the application may directly access this structure from
  998. the callback executed at the end of the task. The @code{starpu_task} structure
  999. associated to the callback currently being executed is indeed accessible with
  1000. the @code{starpu_get_current_task()} function.
  1001. @node Codelet feedback
  1002. @subsection Per-codelet feedback
  1003. The @code{per_worker_stats} field of the @code{starpu_codelet_t} structure is
  1004. an array of counters. The i-th entry of the array is incremented every time a
  1005. task implementing the codelet is executed on the i-th worker.
  1006. This array is not reinitialized when profiling is enabled or disabled.
  1007. @node Worker feedback
  1008. @subsection Per-worker feedback
  1009. The second argument returned by the @code{starpu_worker_get_profiling_info}
  1010. function is a @code{starpu_worker_profiling_info} structure that gives
  1011. statistics about the specified worker. This structure specifies when StarPU
  1012. started collecting profiling information for that worker (@code{start_time}),
  1013. the duration of the profiling measurement interval (@code{total_time}), the
  1014. time spent executing kernels (@code{executing_time}), the time spent sleeping
  1015. because there is no task to execute at all (@code{sleeping_time}), and the
  1016. number of tasks that were executed while profiling was enabled.
  1017. These values give an estimation of the proportion of time spent do real work,
  1018. and the time spent either sleeping because there are not enough executable
  1019. tasks or simply wasted in pure StarPU overhead.
  1020. Calling @code{starpu_worker_get_profiling_info} resets the profiling
  1021. information associated to a worker.
  1022. When an FxT trace is generated (see @ref{Generating traces}), it is also
  1023. possible to use the @code{starpu_top} script (described in @ref{starpu-top}) to
  1024. generate a graphic showing the evolution of these values during the time, for
  1025. the different workers.
  1026. @node Bus feedback
  1027. @subsection Bus-related feedback
  1028. TODO
  1029. @c how to enable/disable performance monitoring
  1030. @c what kind of information do we get ?
  1031. @node Off-line
  1032. @section Off-line performance feedback
  1033. @menu
  1034. * Generating traces:: Generating traces with FxT
  1035. * Gantt diagram:: Creating a Gantt Diagram
  1036. * DAG:: Creating a DAG with graphviz
  1037. * starpu-top:: Monitoring activity
  1038. @end menu
  1039. @node Generating traces
  1040. @subsection Generating traces with FxT
  1041. StarPU can use the FxT library (see
  1042. @indicateurl{https://savannah.nongnu.org/projects/fkt/}) to generate traces
  1043. with a limited runtime overhead.
  1044. You can either get the FxT library from CVS (autotools are required):
  1045. @example
  1046. % cvs -d :pserver:anonymous@@cvs.sv.gnu.org:/sources/fkt co FxT
  1047. % ./bootstrap
  1048. @end example
  1049. If autotools are not available on your machine, or if you prefer to do so,
  1050. FxT's code is also available as a tarball:
  1051. @example
  1052. % wget http://download.savannah.gnu.org/releases/fkt/fxt-0.2.tar.gz
  1053. @end example
  1054. Compiling and installing the FxT library in the @code{$FXTDIR} path is
  1055. done following the standard procedure:
  1056. @example
  1057. % ./configure --prefix=$FXTDIR
  1058. % make
  1059. % make install
  1060. @end example
  1061. In order to have StarPU to generate traces, StarPU should be configured with
  1062. the @code{--with-fxt} option:
  1063. @example
  1064. $ ./configure --with-fxt=$FXTDIR
  1065. @end example
  1066. When FxT is enabled, a trace is generated when StarPU is terminated by calling
  1067. @code{starpu_shutdown()}). The trace is a binary file which name has the form
  1068. @code{prof_file_XXX_YYY} where @code{XXX} is the user name, and
  1069. @code{YYY} is the pid of the process that used StarPU. This file is put in the
  1070. @code{/tmp/} directory by default, but it is possible to specify in which
  1071. directory the file should be created by setting the @code{STARPU_FXT_PREFIX}
  1072. environment variable.
  1073. @node Gantt diagram
  1074. @subsection Creating a Gantt Diagram
  1075. When the FxT trace file @code{filename} has been generated, it is possible to
  1076. generate a trace in the Paje format by calling:
  1077. @example
  1078. % fxt_tool -i filename
  1079. @end example
  1080. This will create a @code{paje.trace} file in the current directory that can be
  1081. inspected with the Vite trace visualizing open-source tool. More information
  1082. about Vite is available at @indicateurl{http://vite.gforge.inria.fr/}. It is
  1083. possible to open the @code{paje.trace} file with Vite by using the following
  1084. command:
  1085. @example
  1086. % vite paje.trace
  1087. @end example
  1088. @node DAG
  1089. @subsection Creating a DAG with graphviz
  1090. When the FxT trace file @code{filename} has been generated, it is possible to
  1091. generate a trace in the Paje format by calling:
  1092. @example
  1093. $ fxt_tool -i filename
  1094. @end example
  1095. This will create a @code{dag.dot} file in the current directory. This file is a
  1096. task graph described using the DOT language. It is possible to display this
  1097. graph by the means of the graphviz library:
  1098. @example
  1099. $ dot -Tpdf dag.dot -o output.pdf
  1100. @end example
  1101. @node starpu-top
  1102. @subsection Monitoring activity
  1103. When the FxT trace file @code{filename} has been generated, it is possible to
  1104. generate a trace in the Paje format by calling:
  1105. @example
  1106. $ fxt_tool -i filename
  1107. @end example
  1108. This will create an @code{activity.data} file in the current directory. A profile of the application showing the activity of StarPU during the execution of the program can be generated:
  1109. @example
  1110. $ starpu_top.sh activity.data
  1111. @end example
  1112. This will create a file named @code{activity.eps} in the current directory.
  1113. This picture is composed of two parts.
  1114. The first part shows the activity of the different workers. The green sections
  1115. indicate which proportion of the time was spent executed kernels on the
  1116. processing unit. The red sections indicate the proportion of time spent in
  1117. StartPU: an important overhead may indicate that the granularity may be too
  1118. low, and that bigger tasks may be appropriate to use the processing unit more
  1119. efficiently. The black sections indicate that the processing unit was blocked
  1120. because there was no task to process: this may indicate a lack of parallelism
  1121. which may be alleviated by creating more tasks when it is possible.
  1122. The second part of the @code{activity.eps} picture is a graph showing the
  1123. evolution of the number of tasks available in the system during the execution.
  1124. Ready tasks are shown in black, and tasks that are submitted but not
  1125. schedulable yet are shown in grey.
  1126. @c ---------------------------------------------------------------------
  1127. @c Configuration options
  1128. @c ---------------------------------------------------------------------
  1129. @node Configuring StarPU
  1130. @chapter Configuring StarPU
  1131. @menu
  1132. * Compilation configuration::
  1133. * Execution configuration through environment variables::
  1134. @end menu
  1135. @node Compilation configuration
  1136. @section Compilation configuration
  1137. The following arguments can be given to the @code{configure} script.
  1138. @menu
  1139. * Common configuration::
  1140. * Configuring workers::
  1141. * Advanced configuration::
  1142. @end menu
  1143. @node Common configuration
  1144. @subsection Common configuration
  1145. @menu
  1146. * --enable-debug::
  1147. * --enable-fast::
  1148. * --enable-verbose::
  1149. * --enable-coverage::
  1150. @end menu
  1151. @node --enable-debug
  1152. @subsubsection @code{--enable-debug}
  1153. @table @asis
  1154. @item @emph{Description}:
  1155. Enable debugging messages.
  1156. @end table
  1157. @node --enable-fast
  1158. @subsubsection @code{--enable-fast}
  1159. @table @asis
  1160. @item @emph{Description}:
  1161. Do not enforce assertions, saves a lot of time spent to compute them otherwise.
  1162. @end table
  1163. @node --enable-verbose
  1164. @subsubsection @code{--enable-verbose}
  1165. @table @asis
  1166. @item @emph{Description}:
  1167. Augment the verbosity of the debugging messages.
  1168. @end table
  1169. @node --enable-coverage
  1170. @subsubsection @code{--enable-coverage}
  1171. @table @asis
  1172. @item @emph{Description}:
  1173. Enable flags for the coverage tool.
  1174. @end table
  1175. @node Configuring workers
  1176. @subsection Configuring workers
  1177. @menu
  1178. * --enable-nmaxcpus::
  1179. * --disable-cpu::
  1180. * --enable-maxcudadev::
  1181. * --disable-cuda::
  1182. * --with-cuda-dir::
  1183. * --enable-maxopencldev::
  1184. * --disable-opencl::
  1185. * --with-opencl-dir::
  1186. * --enable-gordon::
  1187. * --with-gordon-dir::
  1188. @end menu
  1189. @node --enable-nmaxcpus
  1190. @subsubsection @code{--enable-nmaxcpus=<number>}
  1191. @table @asis
  1192. @item @emph{Description}:
  1193. Defines the maximum number of CPU cores that StarPU will support, then
  1194. available as the @code{STARPU_NMAXCPUS} macro.
  1195. @end table
  1196. @node --disable-cpu
  1197. @subsubsection @code{--disable-cpu}
  1198. @table @asis
  1199. @item @emph{Description}:
  1200. Disable the use of CPUs of the machine. Only GPUs etc. will be used.
  1201. @end table
  1202. @node --enable-maxcudadev
  1203. @subsubsection @code{--enable-maxcudadev=<number>}
  1204. @table @asis
  1205. @item @emph{Description}:
  1206. Defines the maximum number of CUDA devices that StarPU will support, then
  1207. available as the @code{STARPU_MAXCUDADEVS} macro.
  1208. @end table
  1209. @node --disable-cuda
  1210. @subsubsection @code{--disable-cuda}
  1211. @table @asis
  1212. @item @emph{Description}:
  1213. Disable the use of CUDA, even if a valid CUDA installation was detected.
  1214. @end table
  1215. @node --with-cuda-dir
  1216. @subsubsection @code{--with-cuda-dir=<path>}
  1217. @table @asis
  1218. @item @emph{Description}:
  1219. Specify the directory where CUDA is installed. This directory should notably contain
  1220. @code{include/cuda.h}.
  1221. @end table
  1222. @node --enable-maxopencldev
  1223. @subsubsection @code{--enable-maxopencldev=<number>}
  1224. @table @asis
  1225. @item @emph{Description}:
  1226. Defines the maximum number of OpenCL devices that StarPU will support, then
  1227. available as the @code{STARPU_MAXOPENCLDEVS} macro.
  1228. @end table
  1229. @node --disable-opencl
  1230. @subsubsection @code{--disable-opencl}
  1231. @table @asis
  1232. @item @emph{Description}:
  1233. Disable the use of OpenCL, even if the SDK is detected.
  1234. @end table
  1235. @node --with-opencl-dir
  1236. @subsubsection @code{--with-opencl-dir=<path>}
  1237. @table @asis
  1238. @item @emph{Description}:
  1239. Specify the location of the OpenCL SDK. This directory should notably contain
  1240. @code{include/CL/cl.h}.
  1241. @end table
  1242. @node --enable-gordon
  1243. @subsubsection @code{--enable-gordon}
  1244. @table @asis
  1245. @item @emph{Description}:
  1246. Enable the use of the Gordon runtime for Cell SPUs.
  1247. @c TODO: rather default to enabled when detected
  1248. @end table
  1249. @node --with-gordon-dir
  1250. @subsubsection @code{--with-gordon-dir=<path>}
  1251. @table @asis
  1252. @item @emph{Description}:
  1253. Specify the location of the Gordon SDK.
  1254. @end table
  1255. @node Advanced configuration
  1256. @subsection Advanced configuration
  1257. @menu
  1258. * --enable-perf-debug::
  1259. * --enable-model-debug::
  1260. * --enable-stats::
  1261. * --enable-maxbuffers::
  1262. * --enable-allocation-cache::
  1263. * --enable-opengl-render::
  1264. * --enable-blas-lib::
  1265. * --with-magma::
  1266. * --with-fxt::
  1267. * --with-perf-model-dir::
  1268. * --with-mpicc::
  1269. * --with-goto-dir::
  1270. * --with-atlas-dir::
  1271. @end menu
  1272. @node --enable-perf-debug
  1273. @subsubsection @code{--enable-perf-debug}
  1274. @table @asis
  1275. @item @emph{Description}:
  1276. Enable performance debugging.
  1277. @end table
  1278. @node --enable-model-debug
  1279. @subsubsection @code{--enable-model-debug}
  1280. @table @asis
  1281. @item @emph{Description}:
  1282. Enable performance model debugging.
  1283. @end table
  1284. @node --enable-stats
  1285. @subsubsection @code{--enable-stats}
  1286. @table @asis
  1287. @item @emph{Description}:
  1288. Enable statistics.
  1289. @end table
  1290. @node --enable-maxbuffers
  1291. @subsubsection @code{--enable-maxbuffers=<nbuffers>}
  1292. @table @asis
  1293. @item @emph{Description}:
  1294. Define the maximum number of buffers that tasks will be able to take
  1295. as parameters, then available as the @code{STARPU_NMAXBUFS} macro.
  1296. @end table
  1297. @node --enable-allocation-cache
  1298. @subsubsection @code{--enable-allocation-cache}
  1299. @table @asis
  1300. @item @emph{Description}:
  1301. Enable the use of a data allocation cache to avoid the cost of it with
  1302. CUDA. Still experimental.
  1303. @end table
  1304. @node --enable-opengl-render
  1305. @subsubsection @code{--enable-opengl-render}
  1306. @table @asis
  1307. @item @emph{Description}:
  1308. Enable the use of OpenGL for the rendering of some examples.
  1309. @c TODO: rather default to enabled when detected
  1310. @end table
  1311. @node --enable-blas-lib
  1312. @subsubsection @code{--enable-blas-lib=<name>}
  1313. @table @asis
  1314. @item @emph{Description}:
  1315. Specify the blas library to be used by some of the examples. The
  1316. library has to be 'atlas' or 'goto'.
  1317. @end table
  1318. @node --with-magma
  1319. @subsubsection @code{--with-magma=<path>}
  1320. @table @asis
  1321. @item @emph{Description}:
  1322. Specify where magma is installed.
  1323. @end table
  1324. @node --with-fxt
  1325. @subsubsection @code{--with-fxt=<path>}
  1326. @table @asis
  1327. @item @emph{Description}:
  1328. Specify the location of FxT (for generating traces and rendering them
  1329. using ViTE). This directory should notably contain
  1330. @code{include/fxt/fxt.h}.
  1331. @c TODO add ref to other section
  1332. @end table
  1333. @node --with-perf-model-dir
  1334. @subsubsection @code{--with-perf-model-dir=<dir>}
  1335. @table @asis
  1336. @item @emph{Description}:
  1337. Specify where performance models should be stored (instead of defaulting to the
  1338. current user's home).
  1339. @end table
  1340. @node --with-mpicc
  1341. @subsubsection @code{--with-mpicc=<path to mpicc>}
  1342. @table @asis
  1343. @item @emph{Description}:
  1344. Specify the location of the @code{mpicc} compiler to be used for starpumpi.
  1345. @end table
  1346. @node --with-goto-dir
  1347. @subsubsection @code{--with-goto-dir=<dir>}
  1348. @table @asis
  1349. @item @emph{Description}:
  1350. Specify the location of GotoBLAS.
  1351. @end table
  1352. @node --with-atlas-dir
  1353. @subsubsection @code{--with-atlas-dir=<dir>}
  1354. @table @asis
  1355. @item @emph{Description}:
  1356. Specify the location of ATLAS. This directory should notably contain
  1357. @code{include/cblas.h}.
  1358. @end table
  1359. @c ---------------------------------------------------------------------
  1360. @c Environment variables
  1361. @c ---------------------------------------------------------------------
  1362. @node Execution configuration through environment variables
  1363. @section Execution configuration through environment variables
  1364. @menu
  1365. * Workers:: Configuring workers
  1366. * Scheduling:: Configuring the Scheduling engine
  1367. * Misc:: Miscellaneous and debug
  1368. @end menu
  1369. Note: the values given in @code{starpu_conf} structure passed when
  1370. calling @code{starpu_init} will override the values of the environment
  1371. variables.
  1372. @node Workers
  1373. @subsection Configuring workers
  1374. @menu
  1375. * STARPU_NCPUS:: Number of CPU workers
  1376. * STARPU_NCUDA:: Number of CUDA workers
  1377. * STARPU_NOPENCL:: Number of OpenCL workers
  1378. * STARPU_NGORDON:: Number of SPU workers (Cell)
  1379. * STARPU_WORKERS_CPUID:: Bind workers to specific CPUs
  1380. * STARPU_WORKERS_CUDAID:: Select specific CUDA devices
  1381. * STARPU_WORKERS_OPENCLID:: Select specific OpenCL devices
  1382. @end menu
  1383. @node STARPU_NCPUS
  1384. @subsubsection @code{STARPU_NCPUS} -- Number of CPU workers
  1385. @table @asis
  1386. @item @emph{Description}:
  1387. Specify the maximum number of CPU workers. Note that StarPU will not allocate
  1388. more CPUs than there are physical CPUs, and that some CPUs are used to control
  1389. the accelerators.
  1390. @end table
  1391. @node STARPU_NCUDA
  1392. @subsubsection @code{STARPU_NCUDA} -- Number of CUDA workers
  1393. @table @asis
  1394. @item @emph{Description}:
  1395. Specify the maximum number of CUDA devices that StarPU can use. If
  1396. @code{STARPU_NCUDA} is lower than the number of physical devices, it is
  1397. possible to select which CUDA devices should be used by the means of the
  1398. @code{STARPU_WORKERS_CUDAID} environment variable.
  1399. @end table
  1400. @node STARPU_NOPENCL
  1401. @subsubsection @code{STARPU_NOPENCL} -- Number of OpenCL workers
  1402. @table @asis
  1403. @item @emph{Description}:
  1404. OpenCL equivalent of the @code{STARPU_NCUDA} environment variable.
  1405. @end table
  1406. @node STARPU_NGORDON
  1407. @subsubsection @code{STARPU_NGORDON} -- Number of SPU workers (Cell)
  1408. @table @asis
  1409. @item @emph{Description}:
  1410. Specify the maximum number of SPUs that StarPU can use.
  1411. @end table
  1412. @node STARPU_WORKERS_CPUID
  1413. @subsubsection @code{STARPU_WORKERS_CPUID} -- Bind workers to specific CPUs
  1414. @table @asis
  1415. @item @emph{Description}:
  1416. Passing an array of integers (starting from 0) in @code{STARPU_WORKERS_CPUID}
  1417. specifies on which logical CPU the different workers should be
  1418. bound. For instance, if @code{STARPU_WORKERS_CPUID = "1 3 0 2"}, the first
  1419. worker will be bound to logical CPU #1, the second CPU worker will be bound to
  1420. logical CPU #3 and so on. Note that the logical ordering of the CPUs is either
  1421. determined by the OS, or provided by the @code{hwloc} library in case it is
  1422. available.
  1423. Note that the first workers correspond to the CUDA workers, then come the
  1424. OpenCL and the SPU, and finally the CPU workers. For example if
  1425. we have @code{STARPU_NCUDA=1}, @code{STARPU_NOPENCL=1}, @code{STARPU_NCPUS=2}
  1426. and @code{STARPU_WORKERS_CPUID = "0 2 1 3"}, the CUDA device will be controlled
  1427. by logical CPU #0, the OpenCL device will be controlled by logical CPU #2, and
  1428. the logical CPUs #1 and #3 will be used by the CPU workers.
  1429. If the number of workers is larger than the array given in
  1430. @code{STARPU_WORKERS_CPUID}, the workers are bound to the logical CPUs in a
  1431. round-robin fashion: if @code{STARPU_WORKERS_CPUID = "0 1"}, the first and the
  1432. third (resp. second and fourth) workers will be put on CPU #0 (resp. CPU #1).
  1433. This variable is ignored if the @code{use_explicit_workers_bindid} flag of the
  1434. @code{starpu_conf} structure passed to @code{starpu_init} is set.
  1435. @end table
  1436. @node STARPU_WORKERS_CUDAID
  1437. @subsubsection @code{STARPU_WORKERS_CUDAID} -- Select specific CUDA devices
  1438. @table @asis
  1439. @item @emph{Description}:
  1440. Similarly to the @code{STARPU_WORKERS_CPUID} environment variable, it is
  1441. possible to select which CUDA devices should be used by StarPU. On a machine
  1442. equipped with 4 GPUs, setting @code{STARPU_WORKERS_CUDAID = "1 3"} and
  1443. @code{STARPU_NCUDA=2} specifies that 2 CUDA workers should be created, and that
  1444. they should use CUDA devices #1 and #3 (the logical ordering of the devices is
  1445. the one reported by CUDA).
  1446. This variable is ignored if the @code{use_explicit_workers_cuda_gpuid} flag of
  1447. the @code{starpu_conf} structure passed to @code{starpu_init} is set.
  1448. @end table
  1449. @node STARPU_WORKERS_OPENCLID
  1450. @subsubsection @code{STARPU_WORKERS_OPENCLID} -- Select specific OpenCL devices
  1451. @table @asis
  1452. @item @emph{Description}:
  1453. OpenCL equivalent of the @code{STARPU_WORKERS_CUDAID} environment variable.
  1454. This variable is ignored if the @code{use_explicit_workers_opencl_gpuid} flag of
  1455. the @code{starpu_conf} structure passed to @code{starpu_init} is set.
  1456. @end table
  1457. @node Scheduling
  1458. @subsection Configuring the Scheduling engine
  1459. @menu
  1460. * STARPU_SCHED:: Scheduling policy
  1461. * STARPU_CALIBRATE:: Calibrate performance models
  1462. * STARPU_PREFETCH:: Use data prefetch
  1463. * STARPU_SCHED_ALPHA:: Computation factor
  1464. * STARPU_SCHED_BETA:: Communication factor
  1465. @end menu
  1466. @node STARPU_SCHED
  1467. @subsubsection @code{STARPU_SCHED} -- Scheduling policy
  1468. @table @asis
  1469. @item @emph{Description}:
  1470. This chooses between the different scheduling policies proposed by StarPU: work
  1471. random, stealing, greedy, with performance models, etc.
  1472. Use @code{STARPU_SCHED=help} to get the list of available schedulers.
  1473. @end table
  1474. @node STARPU_CALIBRATE
  1475. @subsubsection @code{STARPU_CALIBRATE} -- Calibrate performance models
  1476. @table @asis
  1477. @item @emph{Description}:
  1478. If this variable is set to 1, the performance models are calibrated during
  1479. the execution. If it is set to 2, the previous values are dropped to restart
  1480. calibration from scratch.
  1481. Note: this currently only applies to dm and dmda scheduling policies.
  1482. @end table
  1483. @node STARPU_PREFETCH
  1484. @subsubsection @code{STARPU_PREFETCH} -- Use data prefetch
  1485. @table @asis
  1486. @item @emph{Description}:
  1487. This variable indicates whether data prefetching should be enabled (0 means
  1488. that it is disabled). If prefetching is enabled, when a task is scheduled to be
  1489. executed e.g. on a GPU, StarPU will request an asynchronous transfer in
  1490. advance, so that data is already present on the GPU when the task starts. As a
  1491. result, computation and data transfers are overlapped.
  1492. @end table
  1493. @node STARPU_SCHED_ALPHA
  1494. @subsubsection @code{STARPU_SCHED_ALPHA} -- Computation factor
  1495. @table @asis
  1496. @item @emph{Description}:
  1497. To estimate the cost of a task StarPU takes into account the estimated
  1498. computation time (obtained thanks to performance models). The alpha factor is
  1499. the coefficient to be applied to it before adding it to the communication part.
  1500. @end table
  1501. @node STARPU_SCHED_BETA
  1502. @subsubsection @code{STARPU_SCHED_BETA} -- Communication factor
  1503. @table @asis
  1504. @item @emph{Description}:
  1505. To estimate the cost of a task StarPU takes into account the estimated
  1506. data transfer time (obtained thanks to performance models). The beta factor is
  1507. the coefficient to be applied to it before adding it to the computation part.
  1508. @end table
  1509. @node Misc
  1510. @subsection Miscellaneous and debug
  1511. @menu
  1512. * STARPU_LOGFILENAME:: Select debug file name
  1513. * STARPU_FXT_PREFIX:: FxT trace location
  1514. @end menu
  1515. @node STARPU_LOGFILENAME
  1516. @subsubsection @code{STARPU_LOGFILENAME} -- Select debug file name
  1517. @table @asis
  1518. @item @emph{Description}:
  1519. This variable specifies in which file the debugging output should be saved to.
  1520. @end table
  1521. @node STARPU_FXT_PREFIX
  1522. @subsubsection @code{STARPU_FXT_PREFIX} -- FxT trace location
  1523. @table @asis
  1524. @item @emph{Description}
  1525. This variable specifies in which directory to save the trace generated if FxT is enabled.
  1526. @end table
  1527. @c ---------------------------------------------------------------------
  1528. @c StarPU API
  1529. @c ---------------------------------------------------------------------
  1530. @node StarPU API
  1531. @chapter StarPU API
  1532. @menu
  1533. * Initialization and Termination:: Initialization and Termination methods
  1534. * Workers' Properties:: Methods to enumerate workers' properties
  1535. * Data Library:: Methods to manipulate data
  1536. * Data Interfaces::
  1537. * Data Partition::
  1538. * Codelets and Tasks:: Methods to construct tasks
  1539. * Explicit Dependencies:: Explicit Dependencies
  1540. * Implicit Data Dependencies:: Implicit Data Dependencies
  1541. * Performance Model API::
  1542. * Profiling API:: Profiling API
  1543. * CUDA extensions:: CUDA extensions
  1544. * OpenCL extensions:: OpenCL extensions
  1545. * Cell extensions:: Cell extensions
  1546. * Miscellaneous helpers::
  1547. @end menu
  1548. @node Initialization and Termination
  1549. @section Initialization and Termination
  1550. @menu
  1551. * starpu_init:: Initialize StarPU
  1552. * struct starpu_conf:: StarPU runtime configuration
  1553. * starpu_shutdown:: Terminate StarPU
  1554. @end menu
  1555. @node starpu_init
  1556. @subsection @code{starpu_init} -- Initialize StarPU
  1557. @table @asis
  1558. @item @emph{Description}:
  1559. This is StarPU initialization method, which must be called prior to any other
  1560. StarPU call. It is possible to specify StarPU's configuration (e.g. scheduling
  1561. policy, number of cores, ...) by passing a non-null argument. Default
  1562. configuration is used if the passed argument is @code{NULL}.
  1563. @item @emph{Return value}:
  1564. Upon successful completion, this function returns 0. Otherwise, @code{-ENODEV}
  1565. indicates that no worker was available (so that StarPU was not initialized).
  1566. @item @emph{Prototype}:
  1567. @code{int starpu_init(struct starpu_conf *conf);}
  1568. @end table
  1569. @node struct starpu_conf
  1570. @subsection @code{struct starpu_conf} -- StarPU runtime configuration
  1571. @table @asis
  1572. @item @emph{Description}:
  1573. This structure is passed to the @code{starpu_init} function in order
  1574. to configure StarPU.
  1575. When the default value is used, StarPU automatically selects the number
  1576. of processing units and takes the default scheduling policy. This parameter
  1577. overwrites the equivalent environment variables.
  1578. @item @emph{Fields}:
  1579. @table @asis
  1580. @item @code{sched_policy_name} (default = NULL):
  1581. This is the name of the scheduling policy. This can also be specified with the
  1582. @code{STARPU_SCHED} environment variable.
  1583. @item @code{sched_policy} (default = NULL):
  1584. This is the definition of the scheduling policy. This field is ignored
  1585. if @code{sched_policy_name} is set.
  1586. @item @code{ncpus} (default = -1):
  1587. This is the maximum number of CPU cores that StarPU can use. This can also be
  1588. specified with the @code{STARPU_NCPUS} environment variable.
  1589. @item @code{ncuda} (default = -1):
  1590. This is the maximum number of CUDA devices that StarPU can use. This can also be
  1591. specified with the @code{STARPU_NCUDA} environment variable.
  1592. @item @code{nopencl} (default = -1):
  1593. This is the maximum number of OpenCL devices that StarPU can use. This can also be
  1594. specified with the @code{STARPU_NOPENCL} environment variable.
  1595. @item @code{nspus} (default = -1):
  1596. This is the maximum number of Cell SPUs that StarPU can use. This can also be
  1597. specified with the @code{STARPU_NGORDON} environment variable.
  1598. @item @code{use_explicit_workers_bindid} (default = 0)
  1599. If this flag is set, the @code{workers_bindid} array indicates where the
  1600. different workers are bound, otherwise StarPU automatically selects where to
  1601. bind the different workers unless the @code{STARPU_WORKERS_CPUID} environment
  1602. variable is set. The @code{STARPU_WORKERS_CPUID} environment variable is
  1603. ignored if the @code{use_explicit_workers_bindid} flag is set.
  1604. @item @code{workers_bindid[STARPU_NMAXWORKERS]}
  1605. If the @code{use_explicit_workers_bindid} flag is set, this array indicates
  1606. where to bind the different workers. The i-th entry of the
  1607. @code{workers_bindid} indicates the logical identifier of the processor which
  1608. should execute the i-th worker. Note that the logical ordering of the CPUs is
  1609. either determined by the OS, or provided by the @code{hwloc} library in case it
  1610. is available.
  1611. When this flag is set, the @ref{STARPU_WORKERS_CPUID} environment variable is
  1612. ignored.
  1613. @item @code{use_explicit_workers_cuda_gpuid} (default = 0)
  1614. If this flag is set, the CUDA workers will be attached to the CUDA devices
  1615. specified in the @code{workers_cuda_gpuid} array. Otherwise, StarPU affects the
  1616. CUDA devices in a round-robin fashion.
  1617. When this flag is set, the @ref{STARPU_WORKERS_CUDAID} environment variable is
  1618. ignored.
  1619. @item @code{workers_cuda_gpuid[STARPU_NMAXWORKERS]}
  1620. If the @code{use_explicit_workers_cuda_gpuid} flag is set, this array contains
  1621. the logical identifiers of the CUDA devices (as used by @code{cudaGetDevice}).
  1622. @item @code{use_explicit_workers_opencl_gpuid} (default = 0)
  1623. If this flag is set, the OpenCL workers will be attached to the OpenCL devices
  1624. specified in the @code{workers_opencl_gpuid} array. Otherwise, StarPU affects the
  1625. OpenCL devices in a round-robin fashion.
  1626. @item @code{workers_opencl_gpuid[STARPU_NMAXWORKERS]}:
  1627. @item @code{calibrate} (default = 0):
  1628. If this flag is set, StarPU will calibrate the performance models when
  1629. executing tasks. If this value is equal to -1, the default value is used. The
  1630. default value is overwritten by the @code{STARPU_CALIBRATE} environment
  1631. variable when it is set.
  1632. @end table
  1633. @end table
  1634. @node starpu_shutdown
  1635. @subsection @code{starpu_shutdown} -- Terminate StarPU
  1636. @table @asis
  1637. @item @emph{Description}:
  1638. This is StarPU termination method. It must be called at the end of the
  1639. application: statistics and other post-mortem debugging information are not
  1640. guaranteed to be available until this method has been called.
  1641. @item @emph{Prototype}:
  1642. @code{void starpu_shutdown(void);}
  1643. @end table
  1644. @node Workers' Properties
  1645. @section Workers' Properties
  1646. @menu
  1647. * starpu_worker_get_count:: Get the number of processing units
  1648. * starpu_cpu_worker_get_count:: Get the number of CPU controlled by StarPU
  1649. * starpu_cuda_worker_get_count:: Get the number of CUDA devices controlled by StarPU
  1650. * starpu_opencl_worker_get_count:: Get the number of OpenCL devices controlled by StarPU
  1651. * starpu_spu_worker_get_count:: Get the number of Cell SPUs controlled by StarPU
  1652. * starpu_worker_get_id:: Get the identifier of the current worker
  1653. * starpu_worker_get_devid:: Get the device identifier of a worker
  1654. * starpu_worker_get_type:: Get the type of processing unit associated to a worker
  1655. * starpu_worker_get_name:: Get the name of a worker
  1656. * starpu_worker_get_memory_node:: Get the memory node of a worker
  1657. @end menu
  1658. @node starpu_worker_get_count
  1659. @subsection @code{starpu_worker_get_count} -- Get the number of processing units
  1660. @table @asis
  1661. @item @emph{Description}:
  1662. This function returns the number of workers (i.e. processing units executing
  1663. StarPU tasks). The returned value should be at most @code{STARPU_NMAXWORKERS}.
  1664. @item @emph{Prototype}:
  1665. @code{unsigned starpu_worker_get_count(void);}
  1666. @end table
  1667. @node starpu_cpu_worker_get_count
  1668. @subsection @code{starpu_cpu_worker_get_count} -- Get the number of CPU controlled by StarPU
  1669. @table @asis
  1670. @item @emph{Description}:
  1671. This function returns the number of CPUs controlled by StarPU. The returned
  1672. value should be at most @code{STARPU_NMAXCPUS}.
  1673. @item @emph{Prototype}:
  1674. @code{unsigned starpu_cpu_worker_get_count(void);}
  1675. @end table
  1676. @node starpu_cuda_worker_get_count
  1677. @subsection @code{starpu_cuda_worker_get_count} -- Get the number of CUDA devices controlled by StarPU
  1678. @table @asis
  1679. @item @emph{Description}:
  1680. This function returns the number of CUDA devices controlled by StarPU. The returned
  1681. value should be at most @code{STARPU_MAXCUDADEVS}.
  1682. @item @emph{Prototype}:
  1683. @code{unsigned starpu_cuda_worker_get_count(void);}
  1684. @end table
  1685. @node starpu_opencl_worker_get_count
  1686. @subsection @code{starpu_opencl_worker_get_count} -- Get the number of OpenCL devices controlled by StarPU
  1687. @table @asis
  1688. @item @emph{Description}:
  1689. This function returns the number of OpenCL devices controlled by StarPU. The returned
  1690. value should be at most @code{STARPU_MAXOPENCLDEVS}.
  1691. @item @emph{Prototype}:
  1692. @code{unsigned starpu_opencl_worker_get_count(void);}
  1693. @end table
  1694. @node starpu_spu_worker_get_count
  1695. @subsection @code{starpu_spu_worker_get_count} -- Get the number of Cell SPUs controlled by StarPU
  1696. @table @asis
  1697. @item @emph{Description}:
  1698. This function returns the number of Cell SPUs controlled by StarPU.
  1699. @item @emph{Prototype}:
  1700. @code{unsigned starpu_opencl_worker_get_count(void);}
  1701. @end table
  1702. @node starpu_worker_get_id
  1703. @subsection @code{starpu_worker_get_id} -- Get the identifier of the current worker
  1704. @table @asis
  1705. @item @emph{Description}:
  1706. This function returns the identifier of the worker associated to the calling
  1707. thread. The returned value is either -1 if the current context is not a StarPU
  1708. worker (i.e. when called from the application outside a task or a callback), or
  1709. an integer between 0 and @code{starpu_worker_get_count() - 1}.
  1710. @item @emph{Prototype}:
  1711. @code{int starpu_worker_get_id(void);}
  1712. @end table
  1713. @node starpu_worker_get_devid
  1714. @subsection @code{starpu_worker_get_devid} -- Get the device identifier of a worker
  1715. @table @asis
  1716. @item @emph{Description}:
  1717. This functions returns the device id of the worker associated to an identifier
  1718. (as returned by the @code{starpu_worker_get_id} function). In the case of a
  1719. CUDA worker, this device identifier is the logical device identifier exposed by
  1720. CUDA (used by the @code{cudaGetDevice} function for instance). The device
  1721. identifier of a CPU worker is the logical identifier of the core on which the
  1722. worker was bound; this identifier is either provided by the OS or by the
  1723. @code{hwloc} library in case it is available.
  1724. @item @emph{Prototype}:
  1725. @code{int starpu_worker_get_devid(int id);}
  1726. @end table
  1727. @node starpu_worker_get_type
  1728. @subsection @code{starpu_worker_get_type} -- Get the type of processing unit associated to a worker
  1729. @table @asis
  1730. @item @emph{Description}:
  1731. This function returns the type of worker associated to an identifier (as
  1732. returned by the @code{starpu_worker_get_id} function). The returned value
  1733. indicates the architecture of the worker: @code{STARPU_CPU_WORKER} for a CPU
  1734. core, @code{STARPU_CUDA_WORKER} for a CUDA device,
  1735. @code{STARPU_OPENCL_WORKER} for a OpenCL device, and
  1736. @code{STARPU_GORDON_WORKER} for a Cell SPU. The value returned for an invalid
  1737. identifier is unspecified.
  1738. @item @emph{Prototype}:
  1739. @code{enum starpu_archtype starpu_worker_get_type(int id);}
  1740. @end table
  1741. @node starpu_worker_get_name
  1742. @subsection @code{starpu_worker_get_name} -- Get the name of a worker
  1743. @table @asis
  1744. @item @emph{Description}:
  1745. StarPU associates a unique human readable string to each processing unit. This
  1746. function copies at most the @code{maxlen} first bytes of the unique string
  1747. associated to a worker identified by its identifier @code{id} into the
  1748. @code{dst} buffer. The caller is responsible for ensuring that the @code{dst}
  1749. is a valid pointer to a buffer of @code{maxlen} bytes at least. Calling this
  1750. function on an invalid identifier results in an unspecified behaviour.
  1751. @item @emph{Prototype}:
  1752. @code{void starpu_worker_get_name(int id, char *dst, size_t maxlen);}
  1753. @end table
  1754. @node starpu_worker_get_memory_node
  1755. @subsection @code{starpu_worker_get_memory_node} -- Get the memory node of a worker
  1756. @table @asis
  1757. @item @emph{Description}:
  1758. This function returns the identifier of the memory node associated to the
  1759. worker identified by @code{workerid}.
  1760. @item @emph{Prototype}:
  1761. @code{unsigned starpu_worker_get_memory_node(unsigned workerid);}
  1762. @end table
  1763. @node Data Library
  1764. @section Data Library
  1765. This section describes the data management facilities provided by StarPU.
  1766. We show how to use existing data interfaces in @ref{Data Interfaces}, but developers can
  1767. design their own data interfaces if required.
  1768. @menu
  1769. * starpu_access_mode:: starpu_access_mode
  1770. * unsigned memory_node:: Memory node
  1771. * starpu_data_handle:: StarPU opaque data handle
  1772. * void *interface:: StarPU data interface
  1773. * starpu_data_register:: Register a piece of data to StarPU
  1774. * starpu_data_unregister:: Unregister a piece of data from StarPU
  1775. * starpu_data_invalidate:: Invalidate all data replicates
  1776. * starpu_data_acquire:: Access registered data from the application
  1777. * starpu_data_acquire_cb:: Access registered data from the application asynchronously
  1778. * starpu_data_release:: Release registered data from the application
  1779. @end menu
  1780. @node starpu_access_mode
  1781. @subsection @code{starpu_access_mode} -- Data access mode
  1782. This datatype describes a data access mode. The different available modes are:
  1783. @table @asis
  1784. @table @asis
  1785. @item @code{STARPU_R} read-only mode.
  1786. @item @code{STARPU_W} write-only mode.
  1787. @item @code{STARPU_RW} read-write mode. This is equivalent to @code{STARPU_R|STARPU_W}.
  1788. @item @code{STARPU_SCRATCH} scratch memory. A temporary buffer is allocated for the task, but StarPU does not enforce data consistency.
  1789. @end table
  1790. @end table
  1791. @node unsigned memory_node
  1792. @subsection @code{unsigned memory_node} -- Memory node
  1793. @table @asis
  1794. @item @emph{Description}:
  1795. Every worker is associated to a memory node which is a logical abstraction of
  1796. the address space from which the processing unit gets its data. For instance,
  1797. the memory node associated to the different CPU workers represents main memory
  1798. (RAM), the memory node associated to a GPU is DRAM embedded on the device.
  1799. Every memory node is identified by a logical index which is accessible from the
  1800. @code{starpu_worker_get_memory_node} function. When registering a piece of data
  1801. to StarPU, the specified memory node indicates where the piece of data
  1802. initially resides (we also call this memory node the home node of a piece of
  1803. data).
  1804. @end table
  1805. @node starpu_data_handle
  1806. @subsection @code{starpu_data_handle} -- StarPU opaque data handle
  1807. @table @asis
  1808. @item @emph{Description}:
  1809. StarPU uses @code{starpu_data_handle} as an opaque handle to manage a piece of
  1810. data. Once a piece of data has been registered to StarPU, it is associated to a
  1811. @code{starpu_data_handle} which keeps track of the state of the piece of data
  1812. over the entire machine, so that we can maintain data consistency and locate
  1813. data replicates for instance.
  1814. @end table
  1815. @node void *interface
  1816. @subsection @code{void *interface} -- StarPU data interface
  1817. @table @asis
  1818. @item @emph{Description}:
  1819. Data management is done at a high-level in StarPU: rather than accessing a mere
  1820. list of contiguous buffers, the tasks may manipulate data that are described by
  1821. a high-level construct which we call data interface.
  1822. An example of data interface is the "vector" interface which describes a
  1823. contiguous data array on a spefic memory node. This interface is a simple
  1824. structure containing the number of elements in the array, the size of the
  1825. elements, and the address of the array in the appropriate address space (this
  1826. address may be invalid if there is no valid copy of the array in the memory
  1827. node). More informations on the data interfaces provided by StarPU are
  1828. given in @ref{Data Interfaces}.
  1829. When a piece of data managed by StarPU is used by a task, the task
  1830. implementation is given a pointer to an interface describing a valid copy of
  1831. the data that is accessible from the current processing unit.
  1832. @end table
  1833. @node starpu_data_register
  1834. @subsection @code{starpu_data_register} -- Register a piece of data to StarPU
  1835. @table @asis
  1836. @item @emph{Description}:
  1837. Register a piece of data into the handle located at the @code{handleptr}
  1838. address. The @code{interface} buffer contains the initial description of the
  1839. data in the home node. The @code{ops} argument is a pointer to a structure
  1840. describing the different methods used to manipulate this type of interface. See
  1841. @ref{struct starpu_data_interface_ops_t} for more details on this structure.
  1842. If @code{home_node} is not a valid memory node, StarPU will automatically
  1843. allocate the memory described by the interface the data handle is used for the
  1844. first time in write-only mode. Once such data handle has been automatically
  1845. allocated, it is possible to access it using any access mode.
  1846. Note that StarPU supplies a set of predefined types of interface (e.g. vector or
  1847. matrix) which can be registered by the means of helper functions (e.g.
  1848. @code{starpu_vector_data_register} or @code{starpu_matrix_data_register}).
  1849. @item @emph{Prototype}:
  1850. @code{void starpu_data_register(starpu_data_handle *handleptr,
  1851. uint32_t home_node,
  1852. void *interface,
  1853. struct starpu_data_interface_ops_t *ops);}
  1854. @end table
  1855. @node starpu_data_unregister
  1856. @subsection @code{starpu_data_unregister} -- Unregister a piece of data from StarPU
  1857. @table @asis
  1858. @item @emph{Description}:
  1859. This function unregisters a data handle from StarPU. If the data was
  1860. automatically allocated by StarPU because the home node was not valid, all
  1861. automatically allocated buffers are freed. Otherwise, a valid copy of the data
  1862. is put back into the home node in the buffer that was initially registered.
  1863. Using a data handle that has been unregistered from StarPU results in an
  1864. undefined behaviour.
  1865. @item @emph{Prototype}:
  1866. @code{void starpu_data_unregister(starpu_data_handle handle);}
  1867. @end table
  1868. @node starpu_data_invalidate
  1869. @subsection @code{starpu_data_invalidate} -- Invalidate all data replicates
  1870. @table @asis
  1871. @item @emph{Description}:
  1872. Destroy all replicates of the data handle. After data invalidation, the first
  1873. access to the handle must be performed in write-only mode. Accessing an
  1874. invalidated data in read-mode results in undefined behaviour.
  1875. @item @emph{Prototype}:
  1876. @code{void starpu_data_invalidate(starpu_data_handle handle);}
  1877. @end table
  1878. @c TODO create a specific sections about user interaction with the DSM ?
  1879. @node starpu_data_acquire
  1880. @subsection @code{starpu_data_acquire} -- Access registered data from the application
  1881. @table @asis
  1882. @item @emph{Description}:
  1883. The application must call this function prior to accessing registered data from
  1884. main memory outside tasks. StarPU ensures that the application will get an
  1885. up-to-date copy of the data in main memory located where the data was
  1886. originally registered, and that all concurrent accesses (e.g. from tasks) will
  1887. be consistent with the access mode specified in the @code{mode} argument.
  1888. @code{starpu_data_release} must be called once the application does not need to
  1889. access the piece of data anymore.
  1890. Note that implicit data dependencies are also enforced by
  1891. @code{starpu_data_acquire} in case they are enabled.
  1892. @code{starpu_data_acquire} is a blocking call, so that it cannot be called from
  1893. tasks or from their callbacks (in that case, @code{starpu_data_acquire} returns
  1894. @code{-EDEADLK}). Upon successful completion, this function returns 0.
  1895. @item @emph{Prototype}:
  1896. @code{int starpu_data_acquire(starpu_data_handle handle, starpu_access_mode mode);}
  1897. @end table
  1898. @node starpu_data_acquire_cb
  1899. @subsection @code{starpu_data_acquire_cb} -- Access registered data from the application asynchronously
  1900. @table @asis
  1901. @item @emph{Description}:
  1902. @code{starpu_data_acquire_cb} is the asynchronous equivalent of
  1903. @code{starpu_data_release}. When the data specified in the first argument is
  1904. available in the appropriate access mode, the callback function is executed.
  1905. The application may access the requested data during the execution of this
  1906. callback. The callback function must call @code{starpu_data_release} once the
  1907. application does not need to access the piece of data anymore.
  1908. Note that implicit data dependencies are also enforced by
  1909. @code{starpu_data_acquire} in case they are enabled.
  1910. Contrary to @code{starpu_data_acquire}, this function is non-blocking and may
  1911. be called from task callbacks. Upon successful completion, this function
  1912. returns 0.
  1913. @item @emph{Prototype}:
  1914. @code{int starpu_data_acquire_cb(starpu_data_handle handle, starpu_access_mode mode, void (*callback)(void *), void *arg);}
  1915. @end table
  1916. @node starpu_data_release
  1917. @subsection @code{starpu_data_release} -- Release registered data from the application
  1918. @table @asis
  1919. @item @emph{Description}:
  1920. This function releases the piece of data acquired by the application either by
  1921. @code{starpu_data_acquire} or by @code{starpu_data_acquire_cb}.
  1922. @item @emph{Prototype}:
  1923. @code{void starpu_data_release(starpu_data_handle handle);}
  1924. @end table
  1925. @node Data Interfaces
  1926. @section Data Interfaces
  1927. @menu
  1928. * Variable Interface::
  1929. * Vector Interface::
  1930. * Matrix Interface::
  1931. * BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)::
  1932. * CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)::
  1933. * Block Interface::
  1934. @end menu
  1935. @node Variable Interface
  1936. @subsection Variable Interface
  1937. @table @asis
  1938. @item @emph{Description}:
  1939. @item @emph{Prototype}:
  1940. @code{void starpu_variable_data_register(starpu_data_handle *handle,
  1941. uint32_t home_node,
  1942. uintptr_t ptr, size_t elemsize);}
  1943. @item @emph{Example}:
  1944. @cartouche
  1945. @smallexample
  1946. float var;
  1947. starpu_data_handle var_handle;
  1948. starpu_variable_data_register(&var_handle, 0, (uintptr_t)&var, sizeof(var));
  1949. @end smallexample
  1950. @end cartouche
  1951. @end table
  1952. @node Vector Interface
  1953. @subsection Vector Interface
  1954. @table @asis
  1955. @item @emph{Description}:
  1956. @item @emph{Prototype}:
  1957. @code{void starpu_vector_data_register(starpu_data_handle *handle, uint32_t home_node,
  1958. uintptr_t ptr, uint32_t nx, size_t elemsize);}
  1959. @item @emph{Example}:
  1960. @cartouche
  1961. @smallexample
  1962. float vector[NX];
  1963. starpu_data_handle vector_handle;
  1964. starpu_vector_data_register(&vector_handle, 0, (uintptr_t)vector, NX,
  1965. sizeof(vector[0]));
  1966. @end smallexample
  1967. @end cartouche
  1968. @end table
  1969. @node Matrix Interface
  1970. @subsection Matrix Interface
  1971. @table @asis
  1972. @item @emph{Description}:
  1973. @item @emph{Prototype}:
  1974. @code{void starpu_matrix_data_register(starpu_data_handle *handle, uint32_t home_node,
  1975. uintptr_t ptr, uint32_t ld, uint32_t nx,
  1976. uint32_t ny, size_t elemsize);}
  1977. @item @emph{Example}:
  1978. @cartouche
  1979. @smallexample
  1980. float *matrix;
  1981. starpu_data_handle matrix_handle;
  1982. matrix = (float*)malloc(width * height * sizeof(float));
  1983. starpu_matrix_data_register(&matrix_handle, 0, (uintptr_t)matrix,
  1984. width, width, height, sizeof(float));
  1985. @end smallexample
  1986. @end cartouche
  1987. @end table
  1988. @node BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)
  1989. @subsection BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)
  1990. @table @asis
  1991. @item @emph{Description}:
  1992. @item @emph{Prototype}:
  1993. @code{void starpu_bcsr_data_register(starpu_data_handle *handle, uint32_t home_node, uint32_t nnz, uint32_t nrow,
  1994. uintptr_t nzval, uint32_t *colind, uint32_t *rowptr, uint32_t firstentry, uint32_t r, uint32_t c, size_t elemsize);}
  1995. @item @emph{Example}:
  1996. @cartouche
  1997. @smallexample
  1998. @end smallexample
  1999. @end cartouche
  2000. @end table
  2001. @node CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)
  2002. @subsection CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)
  2003. @table @asis
  2004. @item @emph{Description}:
  2005. @item @emph{Prototype}:
  2006. @code{void starpu_csr_data_register(starpu_data_handle *handle, uint32_t home_node, uint32_t nnz, uint32_t nrow,
  2007. uintptr_t nzval, uint32_t *colind, uint32_t *rowptr, uint32_t firstentry, size_t elemsize);}
  2008. @item @emph{Example}:
  2009. @cartouche
  2010. @smallexample
  2011. @end smallexample
  2012. @end cartouche
  2013. @end table
  2014. @node Block Interface
  2015. @subsection Block Interface
  2016. @table @asis
  2017. @item @emph{Description}:
  2018. @item @emph{Prototype}:
  2019. @code{void starpu_block_data_register(starpu_data_handle *handle, uint32_t home_node,
  2020. uintptr_t ptr, uint32_t ldy, uint32_t ldz, uint32_t nx,
  2021. uint32_t ny, uint32_t nz, size_t elemsize);}
  2022. @item @emph{Example}:
  2023. @cartouche
  2024. @smallexample
  2025. float *block;
  2026. starpu_data_handle block_handle;
  2027. block = (float*)malloc(nx*ny*nz*sizeof(float));
  2028. starpu_block_data_register(&block_handle, 0, (uintptr_t)block,
  2029. nx, nx*ny, nx, ny, nz, sizeof(float));
  2030. @end smallexample
  2031. @end cartouche
  2032. @end table
  2033. @node Data Partition
  2034. @section Data Partition
  2035. @menu
  2036. * struct starpu_data_filter:: StarPU filter structure
  2037. * starpu_data_partition:: Partition Data
  2038. * starpu_data_unpartition:: Unpartition Data
  2039. * starpu_data_get_nb_children::
  2040. * starpu_data_get_sub_data::
  2041. * Predefined filter functions::
  2042. @end menu
  2043. @node struct starpu_data_filter
  2044. @subsection @code{struct starpu_data_filter} -- StarPU filter structure
  2045. @table @asis
  2046. @item @emph{Description}:
  2047. The filter structure describes a data partitioning function.
  2048. @item @emph{Fields}:
  2049. @table @asis
  2050. @item @code{filter_func}:
  2051. TODO
  2052. @code{void (*filter_func)(void *father_interface, void* child_interface, struct starpu_data_filter *, unsigned id, unsigned nparts);}
  2053. @item @code{get_nchildren}:
  2054. TODO
  2055. @code{unsigned (*get_nchildren)(struct starpu_data_filter *, starpu_data_handle initial_handle);}
  2056. @item @code{get_child_ops}:
  2057. TODO
  2058. @code{struct starpu_data_interface_ops_t *(*get_child_ops)(struct starpu_data_filter *, unsigned id);}
  2059. @item @code{filter_arg}:
  2060. TODO
  2061. @item @code{nchildren}:
  2062. TODO
  2063. @item @code{filter_arg_ptr}:
  2064. TODO
  2065. @end table
  2066. @end table
  2067. @node starpu_data_partition
  2068. @subsection starpu_data_partition -- Partition Data
  2069. @table @asis
  2070. @item @emph{Description}:
  2071. TODO
  2072. @item @emph{Prototype}:
  2073. @code{void starpu_data_partition(starpu_data_handle initial_handle, struct starpu_data_filter *f);}
  2074. @end table
  2075. @node starpu_data_unpartition
  2076. @subsection starpu_data_unpartition -- Unpartition data
  2077. @table @asis
  2078. @item @emph{Description}:
  2079. TODO
  2080. @item @emph{Prototype}:
  2081. @code{void starpu_data_unpartition(starpu_data_handle root_data, uint32_t gathering_node);}
  2082. @end table
  2083. @node starpu_data_get_nb_children
  2084. @subsection starpu_data_get_nb_children
  2085. @table @asis
  2086. @item @emph{Description}:
  2087. TODO
  2088. @item @emph{Return value}:
  2089. This function returns returns the number of children.
  2090. @item @emph{Prototype}:
  2091. @code{int starpu_data_get_nb_children(starpu_data_handle handle);}
  2092. @end table
  2093. @c starpu_data_handle starpu_data_get_child(starpu_data_handle handle, unsigned i);
  2094. @node starpu_data_get_sub_data
  2095. @subsection starpu_data_get_sub_data
  2096. @table @asis
  2097. @item @emph{Description}:
  2098. TODO
  2099. @item @emph{Return value}:
  2100. TODO
  2101. @item @emph{Prototype}:
  2102. @code{starpu_data_handle starpu_data_get_sub_data(starpu_data_handle root_data, unsigned depth, ... );}
  2103. @end table
  2104. @node Predefined filter functions
  2105. @subsection Predefined filter functions
  2106. @menu
  2107. * Partitioning BCSR Data::
  2108. * Partitioning BLAS interface::
  2109. * Partitioning Vector Data::
  2110. * Partitioning Block Data::
  2111. @end menu
  2112. This section gives a list of the predefined partitioning functions.
  2113. Examples on how to use them are shown in @ref{Partitioning Data}.
  2114. @node Partitioning BCSR Data
  2115. @subsubsection Partitioning BCSR Data
  2116. @itemize
  2117. @item
  2118. TODO
  2119. @code{void starpu_canonical_block_filter_bcsr(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2120. @item
  2121. TODO
  2122. @code{void starpu_vertical_block_filter_func_csr(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2123. @end itemize
  2124. @node Partitioning BLAS interface
  2125. @subsubsection Partitioning BLAS interface
  2126. @itemize
  2127. @item
  2128. TODO
  2129. @code{void starpu_block_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2130. @item
  2131. TODO
  2132. @code{void starpu_vertical_block_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2133. @end itemize
  2134. @node Partitioning Vector Data
  2135. @subsubsection Partitioning Vector Data
  2136. @itemize
  2137. @item
  2138. TODO
  2139. @code{void starpu_block_filter_func_vector(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2140. @item
  2141. TODO
  2142. @code{void starpu_vector_list_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2143. @item
  2144. TODO
  2145. @code{void starpu_vector_divide_in_2_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2146. @end itemize
  2147. @node Partitioning Block Data
  2148. @subsubsection Partitioning Block Data
  2149. @itemize
  2150. @item
  2151. TODO
  2152. @code{void starpu_block_filter_func_block(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);}
  2153. @end itemize
  2154. @node Codelets and Tasks
  2155. @section Codelets and Tasks
  2156. @menu
  2157. * struct starpu_codelet:: StarPU codelet structure
  2158. * struct starpu_task:: StarPU task structure
  2159. * starpu_task_init:: Initialize a Task
  2160. * starpu_task_create:: Allocate and Initialize a Task
  2161. * starpu_task_deinit:: Release all the resources used by a Task
  2162. * starpu_task_destroy:: Destroy a dynamically allocated Task
  2163. * starpu_task_wait:: Wait for the termination of a Task
  2164. * starpu_task_submit:: Submit a Task
  2165. * starpu_task_wait_for_all:: Wait for the termination of all Tasks
  2166. * starpu_get_current_task:: Return the task currently executed by the worker
  2167. * starpu_display_codelet_stats:: Display statistics
  2168. @end menu
  2169. @node struct starpu_codelet
  2170. @subsection @code{struct starpu_codelet} -- StarPU codelet structure
  2171. @table @asis
  2172. @item @emph{Description}:
  2173. The codelet structure describes a kernel that is possibly implemented on
  2174. various targets.
  2175. @item @emph{Fields}:
  2176. @table @asis
  2177. @item @code{where}:
  2178. Indicates which types of processing units are able to execute the codelet.
  2179. @code{STARPU_CPU|STARPU_CUDA} for instance indicates that the codelet is
  2180. implemented for both CPU cores and CUDA devices while @code{STARPU_GORDON}
  2181. indicates that it is only available on Cell SPUs.
  2182. @item @code{cpu_func} (optional):
  2183. Is a function pointer to the CPU implementation of the codelet. Its prototype
  2184. must be: @code{void cpu_func(void *buffers[], void *cl_arg)}. The first
  2185. argument being the array of data managed by the data management library, and
  2186. the second argument is a pointer to the argument passed from the @code{cl_arg}
  2187. field of the @code{starpu_task} structure.
  2188. The @code{cpu_func} field is ignored if @code{STARPU_CPU} does not appear in
  2189. the @code{where} field, it must be non-null otherwise.
  2190. @item @code{cuda_func} (optional):
  2191. Is a function pointer to the CUDA implementation of the codelet. @emph{This
  2192. must be a host-function written in the CUDA runtime API}. Its prototype must
  2193. be: @code{void cuda_func(void *buffers[], void *cl_arg);}. The @code{cuda_func}
  2194. field is ignored if @code{STARPU_CUDA} does not appear in the @code{where}
  2195. field, it must be non-null otherwise.
  2196. @item @code{opencl_func} (optional):
  2197. Is a function pointer to the OpenCL implementation of the codelet. Its
  2198. prototype must be:
  2199. @code{void opencl_func(starpu_data_interface_t *descr, void *arg);}.
  2200. This pointer is ignored if @code{STARPU_OPENCL} does not appear in the
  2201. @code{where} field, it must be non-null otherwise.
  2202. @item @code{gordon_func} (optional):
  2203. This is the index of the Cell SPU implementation within the Gordon library.
  2204. See Gordon documentation for more details on how to register a kernel and
  2205. retrieve its index.
  2206. @item @code{nbuffers}:
  2207. Specifies the number of arguments taken by the codelet. These arguments are
  2208. managed by the DSM and are accessed from the @code{void *buffers[]}
  2209. array. The constant argument passed with the @code{cl_arg} field of the
  2210. @code{starpu_task} structure is not counted in this number. This value should
  2211. not be above @code{STARPU_NMAXBUFS}.
  2212. @item @code{model} (optional):
  2213. This is a pointer to the performance model associated to this codelet. This
  2214. optional field is ignored when set to @code{NULL}. TODO
  2215. @end table
  2216. @end table
  2217. @node struct starpu_task
  2218. @subsection @code{struct starpu_task} -- StarPU task structure
  2219. @table @asis
  2220. @item @emph{Description}:
  2221. The @code{starpu_task} structure describes a task that can be offloaded on the various
  2222. processing units managed by StarPU. It instantiates a codelet. It can either be
  2223. allocated dynamically with the @code{starpu_task_create} method, or declared
  2224. statically. In the latter case, the programmer has to zero the
  2225. @code{starpu_task} structure and to fill the different fields properly. The
  2226. indicated default values correspond to the configuration of a task allocated
  2227. with @code{starpu_task_create}.
  2228. @item @emph{Fields}:
  2229. @table @asis
  2230. @item @code{cl}:
  2231. Is a pointer to the corresponding @code{starpu_codelet} data structure. This
  2232. describes where the kernel should be executed, and supplies the appropriate
  2233. implementations. When set to @code{NULL}, no code is executed during the tasks,
  2234. such empty tasks can be useful for synchronization purposes.
  2235. @item @code{buffers}:
  2236. Is an array of @code{starpu_buffer_descr_t} structures. It describes the
  2237. different pieces of data accessed by the task, and how they should be accessed.
  2238. The @code{starpu_buffer_descr_t} structure is composed of two fields, the
  2239. @code{handle} field specifies the handle of the piece of data, and the
  2240. @code{mode} field is the required access mode (eg @code{STARPU_RW}). The number
  2241. of entries in this array must be specified in the @code{nbuffers} field of the
  2242. @code{starpu_codelet} structure, and should not excede @code{STARPU_NMAXBUFS}.
  2243. If unsufficient, this value can be set with the @code{--enable-maxbuffers}
  2244. option when configuring StarPU.
  2245. @item @code{cl_arg} (optional) (default = NULL):
  2246. This pointer is passed to the codelet through the second argument
  2247. of the codelet implementation (e.g. @code{cpu_func} or @code{cuda_func}).
  2248. In the specific case of the Cell processor, see the @code{cl_arg_size}
  2249. argument.
  2250. @item @code{cl_arg_size} (optional, Cell specific):
  2251. In the case of the Cell processor, the @code{cl_arg} pointer is not directly
  2252. given to the SPU function. A buffer of size @code{cl_arg_size} is allocated on
  2253. the SPU. This buffer is then filled with the @code{cl_arg_size} bytes starting
  2254. at address @code{cl_arg}. In this case, the argument given to the SPU codelet
  2255. is therefore not the @code{cl_arg} pointer, but the address of the buffer in
  2256. local store (LS) instead. This field is ignored for CPU, CUDA and OpenCL
  2257. codelets.
  2258. @item @code{callback_func} (optional) (default = @code{NULL}):
  2259. This is a function pointer of prototype @code{void (*f)(void *)} which
  2260. specifies a possible callback. If this pointer is non-null, the callback
  2261. function is executed @emph{on the host} after the execution of the task. The
  2262. callback is passed the value contained in the @code{callback_arg} field. No
  2263. callback is executed if the field is set to @code{NULL}.
  2264. @item @code{callback_arg} (optional) (default = @code{NULL}):
  2265. This is the pointer passed to the callback function. This field is ignored if
  2266. the @code{callback_func} is set to @code{NULL}.
  2267. @item @code{use_tag} (optional) (default = 0):
  2268. If set, this flag indicates that the task should be associated with the tag
  2269. contained in the @code{tag_id} field. Tag allow the application to synchronize
  2270. with the task and to express task dependencies easily.
  2271. @item @code{tag_id}:
  2272. This fields contains the tag associated to the task if the @code{use_tag} field
  2273. was set, it is ignored otherwise.
  2274. @item @code{synchronous}:
  2275. If this flag is set, the @code{starpu_task_submit} function is blocking and
  2276. returns only when the task has been executed (or if no worker is able to
  2277. process the task). Otherwise, @code{starpu_task_submit} returns immediately.
  2278. @item @code{priority} (optional) (default = @code{STARPU_DEFAULT_PRIO}):
  2279. This field indicates a level of priority for the task. This is an integer value
  2280. that must be set between the return values of the
  2281. @code{starpu_sched_get_min_priority} function for the least important tasks,
  2282. and that of the @code{starpu_sched_get_max_priority} for the most important
  2283. tasks (included). The @code{STARPU_MIN_PRIO} and @code{STARPU_MAX_PRIO} macros
  2284. are provided for convenience and respectively returns value of
  2285. @code{starpu_sched_get_min_priority} and @code{starpu_sched_get_max_priority}.
  2286. Default priority is @code{STARPU_DEFAULT_PRIO}, which is always defined as 0 in
  2287. order to allow static task initialization. Scheduling strategies that take
  2288. priorities into account can use this parameter to take better scheduling
  2289. decisions, but the scheduling policy may also ignore it.
  2290. @item @code{execute_on_a_specific_worker} (default = 0):
  2291. If this flag is set, StarPU will bypass the scheduler and directly affect this
  2292. task to the worker specified by the @code{workerid} field.
  2293. @item @code{workerid} (optional):
  2294. If the @code{execute_on_a_specific_worker} field is set, this field indicates
  2295. which is the identifier of the worker that should process this task (as
  2296. returned by @code{starpu_worker_get_id}). This field is ignored if
  2297. @code{execute_on_a_specific_worker} field is set to 0.
  2298. @item @code{detach} (optional) (default = 1):
  2299. If this flag is set, it is not possible to synchronize with the task
  2300. by the means of @code{starpu_task_wait} later on. Internal data structures
  2301. are only guaranteed to be freed once @code{starpu_task_wait} is called if the
  2302. flag is not set.
  2303. @item @code{destroy} (optional) (default = 1):
  2304. If this flag is set, the task structure will automatically be freed, either
  2305. after the execution of the callback if the task is detached, or during
  2306. @code{starpu_task_wait} otherwise. If this flag is not set, dynamically
  2307. allocated data structures will not be freed until @code{starpu_task_destroy} is
  2308. called explicitly. Setting this flag for a statically allocated task structure
  2309. will result in undefined behaviour.
  2310. @item @code{predicted} (output field):
  2311. Predicted duration of the task. This field is only set if the scheduling
  2312. strategy used performance models.
  2313. @end table
  2314. @end table
  2315. @node starpu_task_init
  2316. @subsection @code{starpu_task_init} -- Initialize a Task
  2317. @table @asis
  2318. @item @emph{Description}:
  2319. Initialize a task structure with default values. This function is implicitly
  2320. called by @code{starpu_task_create}. By default, tasks initialized with
  2321. @code{starpu_task_init} must be deinitialized explicitly with
  2322. @code{starpu_task_deinit}. Tasks can also be initialized statically, using the
  2323. constant @code{STARPU_TASK_INITIALIZER}.
  2324. @item @emph{Prototype}:
  2325. @code{void starpu_task_init(struct starpu_task *task);}
  2326. @end table
  2327. @node starpu_task_create
  2328. @subsection @code{starpu_task_create} -- Allocate and Initialize a Task
  2329. @table @asis
  2330. @item @emph{Description}:
  2331. Allocate a task structure and initialize it with default values. Tasks
  2332. allocated dynamically with @code{starpu_task_create} are automatically freed when the
  2333. task is terminated. If the destroy flag is explicitly unset, the resources used
  2334. by the task are freed by calling
  2335. @code{starpu_task_destroy}.
  2336. @item @emph{Prototype}:
  2337. @code{struct starpu_task *starpu_task_create(void);}
  2338. @end table
  2339. @node starpu_task_deinit
  2340. @subsection @code{starpu_task_deinit} -- Release all the resources used by a Task
  2341. @table @asis
  2342. @item @emph{Description}:
  2343. Release all the structures automatically allocated to execute the task. This is
  2344. called automatically by @code{starpu_task_destroy}, but the task structure itself is not
  2345. freed. This should be used for statically allocated tasks for instance.
  2346. @item @emph{Prototype}:
  2347. @code{void starpu_task_deinit(struct starpu_task *task);}
  2348. @end table
  2349. @node starpu_task_destroy
  2350. @subsection @code{starpu_task_destroy} -- Destroy a dynamically allocated Task
  2351. @table @asis
  2352. @item @emph{Description}:
  2353. Free the resource allocated during @code{starpu_task_create}. This function can be
  2354. called automatically after the execution of a task by setting the
  2355. @code{destroy} flag of the @code{starpu_task} structure (default behaviour).
  2356. Calling this function on a statically allocated task results in an undefined
  2357. behaviour.
  2358. @item @emph{Prototype}:
  2359. @code{void starpu_task_destroy(struct starpu_task *task);}
  2360. @end table
  2361. @node starpu_task_wait
  2362. @subsection @code{starpu_task_wait} -- Wait for the termination of a Task
  2363. @table @asis
  2364. @item @emph{Description}:
  2365. This function blocks until the task has been executed. It is not possible to
  2366. synchronize with a task more than once. It is not possible to wait for
  2367. synchronous or detached tasks.
  2368. @item @emph{Return value}:
  2369. Upon successful completion, this function returns 0. Otherwise, @code{-EINVAL}
  2370. indicates that the specified task was either synchronous or detached.
  2371. @item @emph{Prototype}:
  2372. @code{int starpu_task_wait(struct starpu_task *task);}
  2373. @end table
  2374. @node starpu_task_submit
  2375. @subsection @code{starpu_task_submit} -- Submit a Task
  2376. @table @asis
  2377. @item @emph{Description}:
  2378. This function submits a task to StarPU. Calling this function does
  2379. not mean that the task will be executed immediately as there can be data or task
  2380. (tag) dependencies that are not fulfilled yet: StarPU will take care of
  2381. scheduling this task with respect to such dependencies.
  2382. This function returns immediately if the @code{synchronous} field of the
  2383. @code{starpu_task} structure was set to 0, and block until the termination of
  2384. the task otherwise. It is also possible to synchronize the application with
  2385. asynchronous tasks by the means of tags, using the @code{starpu_tag_wait}
  2386. function for instance.
  2387. @item @emph{Return value}:
  2388. In case of success, this function returns 0, a return value of @code{-ENODEV}
  2389. means that there is no worker able to process this task (e.g. there is no GPU
  2390. available and this task is only implemented for CUDA devices).
  2391. @item @emph{Prototype}:
  2392. @code{int starpu_task_submit(struct starpu_task *task);}
  2393. @end table
  2394. @node starpu_task_wait_for_all
  2395. @subsection @code{starpu_task_wait_for_all} -- Wait for the termination of all Tasks
  2396. @table @asis
  2397. @item @emph{Description}:
  2398. This function blocks until all the tasks that were submitted are terminated.
  2399. @item @emph{Prototype}:
  2400. @code{void starpu_task_wait_for_all(void);}
  2401. @end table
  2402. @node starpu_get_current_task
  2403. @subsection @code{starpu_get_current_task} -- Return the task currently executed by the worker
  2404. @table @asis
  2405. @item @emph{Description}:
  2406. This function returns the task currently executed by the worker, or
  2407. NULL if it is called either from a thread that is not a task or simply
  2408. because there is no task being executed at the moment.
  2409. @item @emph{Prototype}:
  2410. @code{struct starpu_task *starpu_get_current_task(void);}
  2411. @end table
  2412. @node starpu_display_codelet_stats
  2413. @subsection @code{starpu_display_codelet_stats} -- Display statistics
  2414. @table @asis
  2415. @item @emph{Description}:
  2416. TODO
  2417. @item @emph{Prototype}:
  2418. @code{void starpu_display_codelet_stats(struct starpu_codelet_t *cl);}
  2419. @end table
  2420. @c Callbacks : what can we put in callbacks ?
  2421. @node Explicit Dependencies
  2422. @section Explicit Dependencies
  2423. @menu
  2424. * starpu_task_declare_deps_array:: starpu_task_declare_deps_array
  2425. * starpu_tag_t:: Task logical identifier
  2426. * starpu_tag_declare_deps:: Declare the Dependencies of a Tag
  2427. * starpu_tag_declare_deps_array:: Declare the Dependencies of a Tag
  2428. * starpu_tag_wait:: Block until a Tag is terminated
  2429. * starpu_tag_wait_array:: Block until a set of Tags is terminated
  2430. * starpu_tag_remove:: Destroy a Tag
  2431. * starpu_tag_notify_from_apps:: Feed a tag explicitly
  2432. @end menu
  2433. @node starpu_task_declare_deps_array
  2434. @subsection @code{starpu_task_declare_deps_array} -- Declare task dependencies
  2435. @table @asis
  2436. @item @emph{Description}:
  2437. Declare task dependencies between a @code{task} and an array of tasks of length
  2438. @code{ndeps}. This function must be called prior to the submission of the task,
  2439. but it may called after the submission or the execution of the tasks in the
  2440. array provided the tasks are still valid (ie. they were not automatically
  2441. destroyed). Calling this function on a task that was already submitted or with
  2442. an entry of @code{task_array} that is not a valid task anymore results in an
  2443. undefined behaviour. If @code{ndeps} is null, no dependency is added. It is
  2444. possible to call @code{starpu_task_declare_deps_array} multiple times on the
  2445. same task, in this case, the dependencies are added. It is possible to have
  2446. redundancy in the task dependencies.
  2447. @item @emph{Prototype}:
  2448. @code{void starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[]);}
  2449. @end table
  2450. @node starpu_tag_t
  2451. @subsection @code{starpu_tag_t} -- Task logical identifier
  2452. @table @asis
  2453. @item @emph{Description}:
  2454. It is possible to associate a task with a unique ``tag'' and to express
  2455. dependencies between tasks by the means of those tags. To do so, fill the
  2456. @code{tag_id} field of the @code{starpu_task} structure with a tag number (can
  2457. be arbitrary) and set the @code{use_tag} field to 1.
  2458. If @code{starpu_tag_declare_deps} is called with this tag number, the task will
  2459. not be started until the tasks which holds the declared dependency tags are
  2460. completed.
  2461. @end table
  2462. @node starpu_tag_declare_deps
  2463. @subsection @code{starpu_tag_declare_deps} -- Declare the Dependencies of a Tag
  2464. @table @asis
  2465. @item @emph{Description}:
  2466. Specify the dependencies of the task identified by tag @code{id}. The first
  2467. argument specifies the tag which is configured, the second argument gives the
  2468. number of tag(s) on which @code{id} depends. The following arguments are the
  2469. tags which have to be terminated to unlock the task.
  2470. This function must be called before the associated task is submitted to StarPU
  2471. with @code{starpu_task_submit}.
  2472. @item @emph{Remark}
  2473. Because of the variable arity of @code{starpu_tag_declare_deps}, note that the
  2474. last arguments @emph{must} be of type @code{starpu_tag_t}: constant values
  2475. typically need to be explicitly casted. Using the
  2476. @code{starpu_tag_declare_deps_array} function avoids this hazard.
  2477. @item @emph{Prototype}:
  2478. @code{void starpu_tag_declare_deps(starpu_tag_t id, unsigned ndeps, ...);}
  2479. @item @emph{Example}:
  2480. @cartouche
  2481. @example
  2482. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  2483. starpu_tag_declare_deps((starpu_tag_t)0x1,
  2484. 2, (starpu_tag_t)0x32, (starpu_tag_t)0x52);
  2485. @end example
  2486. @end cartouche
  2487. @end table
  2488. @node starpu_tag_declare_deps_array
  2489. @subsection @code{starpu_tag_declare_deps_array} -- Declare the Dependencies of a Tag
  2490. @table @asis
  2491. @item @emph{Description}:
  2492. This function is similar to @code{starpu_tag_declare_deps}, except that its
  2493. does not take a variable number of arguments but an array of tags of size
  2494. @code{ndeps}.
  2495. @item @emph{Prototype}:
  2496. @code{void starpu_tag_declare_deps_array(starpu_tag_t id, unsigned ndeps, starpu_tag_t *array);}
  2497. @item @emph{Example}:
  2498. @cartouche
  2499. @example
  2500. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  2501. starpu_tag_t tag_array[2] = @{0x32, 0x52@};
  2502. starpu_tag_declare_deps_array((starpu_tag_t)0x1, 2, tag_array);
  2503. @end example
  2504. @end cartouche
  2505. @end table
  2506. @node starpu_tag_wait
  2507. @subsection @code{starpu_tag_wait} -- Block until a Tag is terminated
  2508. @table @asis
  2509. @item @emph{Description}:
  2510. This function blocks until the task associated to tag @code{id} has been
  2511. executed. This is a blocking call which must therefore not be called within
  2512. tasks or callbacks, but only from the application directly. It is possible to
  2513. synchronize with the same tag multiple times, as long as the
  2514. @code{starpu_tag_remove} function is not called. Note that it is still
  2515. possible to synchronize with a tag associated to a task which @code{starpu_task}
  2516. data structure was freed (e.g. if the @code{destroy} flag of the
  2517. @code{starpu_task} was enabled).
  2518. @item @emph{Prototype}:
  2519. @code{void starpu_tag_wait(starpu_tag_t id);}
  2520. @end table
  2521. @node starpu_tag_wait_array
  2522. @subsection @code{starpu_tag_wait_array} -- Block until a set of Tags is terminated
  2523. @table @asis
  2524. @item @emph{Description}:
  2525. This function is similar to @code{starpu_tag_wait} except that it blocks until
  2526. @emph{all} the @code{ntags} tags contained in the @code{id} array are
  2527. terminated.
  2528. @item @emph{Prototype}:
  2529. @code{void starpu_tag_wait_array(unsigned ntags, starpu_tag_t *id);}
  2530. @end table
  2531. @node starpu_tag_remove
  2532. @subsection @code{starpu_tag_remove} -- Destroy a Tag
  2533. @table @asis
  2534. @item @emph{Description}:
  2535. This function releases the resources associated to tag @code{id}. It can be
  2536. called once the corresponding task has been executed and when there is
  2537. no other tag that depend on this tag anymore.
  2538. @item @emph{Prototype}:
  2539. @code{void starpu_tag_remove(starpu_tag_t id);}
  2540. @end table
  2541. @node starpu_tag_notify_from_apps
  2542. @subsection @code{starpu_tag_notify_from_apps} -- Feed a Tag explicitly
  2543. @table @asis
  2544. @item @emph{Description}:
  2545. This function explicitly unlocks tag @code{id}. It may be useful in the
  2546. case of applications which execute part of their computation outside StarPU
  2547. tasks (e.g. third-party libraries). It is also provided as a
  2548. convenient tool for the programmer, for instance to entirely construct the task
  2549. DAG before actually giving StarPU the opportunity to execute the tasks.
  2550. @item @emph{Prototype}:
  2551. @code{void starpu_tag_notify_from_apps(starpu_tag_t id);}
  2552. @end table
  2553. @node Implicit Data Dependencies
  2554. @section Implicit Data Dependencies
  2555. @menu
  2556. * starpu_data_set_default_sequential_consistency_flag:: starpu_data_set_default_sequential_consistency_flag
  2557. * starpu_data_get_default_sequential_consistency_flag:: starpu_data_get_default_sequential_consistency_flag
  2558. * starpu_data_set_sequential_consistency_flag:: starpu_data_set_sequential_consistency_flag
  2559. @end menu
  2560. In this section, we describe how StarPU makes it possible to insert implicit
  2561. task dependencies in order to enforce sequential data consistency. When this
  2562. data consistency is enabled on a specific data handle, any data access will
  2563. appear as sequentially consistent from the application. For instance, if the
  2564. application submits two tasks that access the same piece of data in read-only
  2565. mode, and then a third task that access it in write mode, dependencies will be
  2566. added between the two first tasks and the third one. Implicit data dependencies
  2567. are also inserted in the case of data accesses from the application.
  2568. @node starpu_data_set_default_sequential_consistency_flag
  2569. @subsection @code{starpu_data_set_default_sequential_consistency_flag} -- Set default sequential consistency flag
  2570. @table @asis
  2571. @item @emph{Description}:
  2572. Set the default sequential consistency flag. If a non-zero value is passed, a
  2573. sequential data consistency will be enforced for all handles registered after
  2574. this function call, otherwise it is disabled. By default, StarPU enables
  2575. sequential data consistency. It is also possible to select the data consistency
  2576. mode of a specific data handle with the
  2577. @code{starpu_data_set_sequential_consistency_flag} function.
  2578. @item @emph{Prototype}:
  2579. @code{void starpu_data_set_default_sequential_consistency_flag(unsigned flag);}
  2580. @end table
  2581. @node starpu_data_get_default_sequential_consistency_flag
  2582. @subsection @code{starpu_data_get_default_sequential_consistency_flag} -- Get current default sequential consistency flag
  2583. @table @asis
  2584. @item @emph{Description}:
  2585. This function returns the current default sequential consistency flag.
  2586. @item @emph{Prototype}:
  2587. @code{unsigned starpu_data_set_default_sequential_consistency_flag(void);}
  2588. @end table
  2589. @node starpu_data_set_sequential_consistency_flag
  2590. @subsection @code{starpu_data_set_sequential_consistency_flag} -- Set data sequential consistency mode
  2591. @table @asis
  2592. @item @emph{Description}:
  2593. Select the data consistency mode associated to a data handle. The consistency
  2594. mode set using this function has the priority over the default mode which can
  2595. be set with @code{starpu_data_set_sequential_consistency_flag}.
  2596. @item @emph{Prototype}:
  2597. @code{void starpu_data_set_sequential_consistency_flag(starpu_data_handle handle, unsigned flag);}
  2598. @end table
  2599. @node Performance Model API
  2600. @section Performance Model API
  2601. @menu
  2602. * starpu_load_history_debug::
  2603. * starpu_perfmodel_debugfilepath::
  2604. * starpu_perfmodel_get_arch_name::
  2605. * starpu_force_bus_sampling::
  2606. @end menu
  2607. @node starpu_load_history_debug
  2608. @subsection @code{starpu_load_history_debug}
  2609. @table @asis
  2610. @item @emph{Description}:
  2611. TODO
  2612. @item @emph{Prototype}:
  2613. @code{int starpu_load_history_debug(const char *symbol, struct starpu_perfmodel_t *model);}
  2614. @end table
  2615. @node starpu_perfmodel_debugfilepath
  2616. @subsection @code{starpu_perfmodel_debugfilepath}
  2617. @table @asis
  2618. @item @emph{Description}:
  2619. TODO
  2620. @item @emph{Prototype}:
  2621. @code{void starpu_perfmodel_debugfilepath(struct starpu_perfmodel_t *model, enum starpu_perf_archtype arch, char *path, size_t maxlen);}
  2622. @end table
  2623. @node starpu_perfmodel_get_arch_name
  2624. @subsection @code{starpu_perfmodel_get_arch_name}
  2625. @table @asis
  2626. @item @emph{Description}:
  2627. TODO
  2628. @item @emph{Prototype}:
  2629. @code{void starpu_perfmodel_get_arch_name(enum starpu_perf_archtype arch, char *archname, size_t maxlen);}
  2630. @end table
  2631. @node starpu_force_bus_sampling
  2632. @subsection @code{starpu_force_bus_sampling}
  2633. @table @asis
  2634. @item @emph{Description}:
  2635. TODO
  2636. @item @emph{Prototype}:
  2637. @code{void starpu_force_bus_sampling(void);}
  2638. @end table
  2639. @node Profiling API
  2640. @section Profiling API
  2641. @menu
  2642. * starpu_profiling_status_set:: starpu_profiling_status_set
  2643. * starpu_profiling_status_get:: starpu_profiling_status_get
  2644. * struct starpu_task_profiling_info:: task profiling information
  2645. * struct starpu_worker_profiling_info:: worker profiling information
  2646. * starpu_worker_get_profiling_info:: starpu_worker_get_profiling_info
  2647. * struct starpu_bus_profiling_info:: bus profiling information
  2648. * starpu_bus_get_count::
  2649. * starpu_bus_get_id::
  2650. * starpu_bus_get_src::
  2651. * starpu_bus_get_dst::
  2652. * starpu_timing_timespec_delay_us::
  2653. * starpu_timing_timespec_to_us::
  2654. * starpu_bus_profiling_helper_display_summary::
  2655. @end menu
  2656. @node starpu_profiling_status_set
  2657. @subsection @code{starpu_profiling_status_set} -- Set current profiling status
  2658. @table @asis
  2659. @item @emph{Description}:
  2660. Thie function sets the profiling status. Profiling is activated by passing
  2661. @code{STARPU_PROFILING_ENABLE} in @code{status}. Passing
  2662. @code{STARPU_PROFILING_DISABLE} disables profiling. Calling this function
  2663. resets all profiling measurements. When profiling is enabled, the
  2664. @code{profiling_info} field of the @code{struct starpu_task} structure points
  2665. to a valid @code{struct starpu_task_profiling_info} structure containing
  2666. information about the execution of the task.
  2667. @item @emph{Return value}:
  2668. Negative return values indicate an error, otherwise the previous status is
  2669. returned.
  2670. @item @emph{Prototype}:
  2671. @code{int starpu_profiling_status_set(int status);}
  2672. @end table
  2673. @node starpu_profiling_status_get
  2674. @subsection @code{starpu_profiling_status_get} -- Get current profiling status
  2675. @table @asis
  2676. @item @emph{Description}:
  2677. Return the current profiling status or a negative value in case there was an error.
  2678. @item @emph{Prototype}:
  2679. @code{int starpu_profiling_status_get(void);}
  2680. @end table
  2681. @node struct starpu_task_profiling_info
  2682. @subsection @code{struct starpu_task_profiling_info} -- Task profiling information
  2683. @table @asis
  2684. @item @emph{Description}:
  2685. This structure contains information about the execution of a task. It is
  2686. accessible from the @code{.profiling_info} field of the @code{starpu_task}
  2687. structure if profiling was enabled.
  2688. @item @emph{Fields}:
  2689. @table @asis
  2690. @item @code{submit_time}:
  2691. Date of task submission (relative to the initialization of StarPU).
  2692. @item @code{start_time}:
  2693. Date of task execution beginning (relative to the initialization of StarPU).
  2694. @item @code{end_time}:
  2695. Date of task execution termination (relative to the initialization of StarPU).
  2696. @item @code{workerid}:
  2697. Identifier of the worker which has executed the task.
  2698. @end table
  2699. @end table
  2700. @node struct starpu_worker_profiling_info
  2701. @subsection @code{struct starpu_worker_profiling_info} -- Worker profiling information
  2702. @table @asis
  2703. @item @emph{Description}:
  2704. This structure contains the profiling information associated to a worker.
  2705. @item @emph{Fields}:
  2706. @table @asis
  2707. @item @code{start_time}:
  2708. Starting date for the reported profiling measurements.
  2709. @item @code{total_time}:
  2710. Duration of the profiling measurement interval.
  2711. @item @code{executing_time}:
  2712. Time spent by the worker to execute tasks during the profiling measurement interval.
  2713. @item @code{sleeping_time}:
  2714. Time spent idling by the worker during the profiling measurement interval.
  2715. @item @code{executed_tasks}:
  2716. Number of tasks executed by the worker during the profiling measurement interval.
  2717. @end table
  2718. @end table
  2719. @node starpu_worker_get_profiling_info
  2720. @subsection @code{starpu_worker_get_profiling_info} -- Get worker profiling info
  2721. @table @asis
  2722. @item @emph{Description}:
  2723. Get the profiling info associated to the worker identified by @code{workerid},
  2724. and reset the profiling measurements. If the @code{worker_info} argument is
  2725. NULL, only reset the counters associated to worker @code{workerid}.
  2726. @item @emph{Return value}:
  2727. Upon successful completion, this function returns 0. Otherwise, a negative
  2728. value is returned.
  2729. @item @emph{Prototype}:
  2730. @code{int starpu_worker_get_profiling_info(int workerid, struct starpu_worker_profiling_info *worker_info);}
  2731. @end table
  2732. @node struct starpu_bus_profiling_info
  2733. @subsection @code{struct starpu_bus_profiling_info} -- Bus profiling information
  2734. @table @asis
  2735. @item @emph{Description}:
  2736. TODO
  2737. @item @emph{Fields}:
  2738. @table @asis
  2739. @item @code{start_time}:
  2740. TODO
  2741. @item @code{total_time}:
  2742. TODO
  2743. @item @code{transferred_bytes}:
  2744. TODO
  2745. @item @code{transfer_count}:
  2746. TODO
  2747. @end table
  2748. @end table
  2749. @node starpu_bus_get_count
  2750. @subsection @code{starpu_bus_get_count}
  2751. @table @asis
  2752. @item @emph{Description}:
  2753. TODO
  2754. @item @emph{Prototype}:
  2755. @code{int starpu_bus_get_count(void);}
  2756. @end table
  2757. @node starpu_bus_get_id
  2758. @subsection @code{starpu_bus_get_id}
  2759. @table @asis
  2760. @item @emph{Description}:
  2761. TODO
  2762. @item @emph{Prototype}:
  2763. @code{int starpu_bus_get_id(int src, int dst);}
  2764. @end table
  2765. @node starpu_bus_get_src
  2766. @subsection @code{starpu_bus_get_src}
  2767. @table @asis
  2768. @item @emph{Description}:
  2769. TODO
  2770. @item @emph{Prototype}:
  2771. @code{int starpu_bus_get_src(int busid);}
  2772. @end table
  2773. @node starpu_bus_get_dst
  2774. @subsection @code{starpu_bus_get_dst}
  2775. @table @asis
  2776. @item @emph{Description}:
  2777. TODO
  2778. @item @emph{Prototype}:
  2779. @code{int starpu_bus_get_dst(int busid);}
  2780. @end table
  2781. @node starpu_timing_timespec_delay_us
  2782. @subsection @code{starpu_timing_timespec_delay_us}
  2783. @table @asis
  2784. @item @emph{Description}:
  2785. TODO
  2786. @item @emph{Prototype}:
  2787. @code{double starpu_timing_timespec_delay_us(struct timespec *start, struct timespec *end);}
  2788. @end table
  2789. @node starpu_timing_timespec_to_us
  2790. @subsection @code{starpu_timing_timespec_to_us}
  2791. @table @asis
  2792. @item @emph{Description}:
  2793. TODO
  2794. @item @emph{Prototype}:
  2795. @code{double starpu_timing_timespec_to_us(struct timespec *ts);}
  2796. @end table
  2797. @node starpu_bus_profiling_helper_display_summary
  2798. @subsection @code{starpu_bus_profiling_helper_display_summary}
  2799. @table @asis
  2800. @item @emph{Description}:
  2801. TODO
  2802. @item @emph{Prototype}:
  2803. @code{void starpu_bus_profiling_helper_display_summary(void);}
  2804. @end table
  2805. @node CUDA extensions
  2806. @section CUDA extensions
  2807. @c void starpu_data_malloc_pinned_if_possible(float **A, size_t dim);
  2808. @menu
  2809. * starpu_cuda_get_local_stream:: Get current worker's CUDA stream
  2810. * starpu_helper_cublas_init:: Initialize CUBLAS on every CUDA device
  2811. * starpu_helper_cublas_shutdown:: Deinitialize CUBLAS on every CUDA device
  2812. @end menu
  2813. @node starpu_cuda_get_local_stream
  2814. @subsection @code{starpu_cuda_get_local_stream} -- Get current worker's CUDA stream
  2815. @table @asis
  2816. @item @emph{Description}:
  2817. StarPU provides a stream for every CUDA device controlled by StarPU. This
  2818. function is only provided for convenience so that programmers can easily use
  2819. asynchronous operations within codelets without having to create a stream by
  2820. hand. Note that the application is not forced to use the stream provided by
  2821. @code{starpu_cuda_get_local_stream} and may also create its own streams.
  2822. Synchronizing with @code{cudaThreadSynchronize()} is allowed, but will reduce
  2823. the likelihood of having all transfers overlapped.
  2824. @item @emph{Prototype}:
  2825. @code{cudaStream_t *starpu_cuda_get_local_stream(void);}
  2826. @end table
  2827. @node starpu_helper_cublas_init
  2828. @subsection @code{starpu_helper_cublas_init} -- Initialize CUBLAS on every CUDA device
  2829. @table @asis
  2830. @item @emph{Description}:
  2831. The CUBLAS library must be initialized prior to any CUBLAS call. Calling
  2832. @code{starpu_helper_cublas_init} will initialize CUBLAS on every CUDA device
  2833. controlled by StarPU. This call blocks until CUBLAS has been properly
  2834. initialized on every device.
  2835. @item @emph{Prototype}:
  2836. @code{void starpu_helper_cublas_init(void);}
  2837. @end table
  2838. @node starpu_helper_cublas_shutdown
  2839. @subsection @code{starpu_helper_cublas_shutdown} -- Deinitialize CUBLAS on every CUDA device
  2840. @table @asis
  2841. @item @emph{Description}:
  2842. This function synchronously deinitializes the CUBLAS library on every CUDA device.
  2843. @item @emph{Prototype}:
  2844. @code{void starpu_helper_cublas_shutdown(void);}
  2845. @end table
  2846. @node OpenCL extensions
  2847. @section OpenCL extensions
  2848. @menu
  2849. * Enabling OpenCL:: Enabling OpenCL
  2850. * Compiling OpenCL codelets:: Compiling OpenCL codelets
  2851. * Loading OpenCL codelets:: Loading OpenCL codelets
  2852. @end menu
  2853. @node Enabling OpenCL
  2854. @subsection Enabling OpenCL
  2855. On GPU devices which can run both CUDA and OpenCL, CUDA will be
  2856. enabled by default. To enable OpenCL, you need either to disable CUDA
  2857. when configuring StarPU:
  2858. @example
  2859. % ./configure --disable-cuda
  2860. @end example
  2861. or when running applications:
  2862. @example
  2863. % STARPU_NCUDA=0 ./application
  2864. @end example
  2865. OpenCL will automatically be started on any device not yet used by
  2866. CUDA. So on a machine running 4 GPUS, it is therefore possible to
  2867. enable CUDA on 2 devices, and OpenCL on the 2 other devices by doing
  2868. so:
  2869. @example
  2870. % STARPU_NCUDA=2 ./application
  2871. @end example
  2872. @node Compiling OpenCL codelets
  2873. @subsection Compiling OpenCL codelets
  2874. Source codes for OpenCL codelets can be stored in a file or in a
  2875. string. StarPU provides functions to build the program executable for
  2876. each available OpenCL device as a @code{cl_program} object. This
  2877. program executable can then be loaded within a specific queue as
  2878. explained in the next section. These are only helpers, Applications
  2879. can also fill a @code{starpu_opencl_program} array by hand for more advanced
  2880. use (e.g. different programs on the different OpenCL devices, for
  2881. relocation purpose for instance).
  2882. @menu
  2883. * starpu_opencl_load_opencl_from_file:: Compiling OpenCL source code
  2884. * starpu_opencl_load_opencl_from_string:: Compiling OpenCL source code
  2885. * starpu_opencl_unload_opencl:: Releasing OpenCL code
  2886. @end menu
  2887. @node starpu_opencl_load_opencl_from_file
  2888. @subsubsection @code{starpu_opencl_load_opencl_from_file} -- Compiling OpenCL source code
  2889. @table @asis
  2890. @item @emph{Description}:
  2891. TODO
  2892. @item @emph{Prototype}:
  2893. @code{int starpu_opencl_load_opencl_from_file(char *source_file_name, struct starpu_opencl_program *opencl_programs);}
  2894. @end table
  2895. @node starpu_opencl_load_opencl_from_string
  2896. @subsubsection @code{starpu_opencl_load_opencl_from_string} -- Compiling OpenCL source code
  2897. @table @asis
  2898. @item @emph{Description}:
  2899. TODO
  2900. @item @emph{Prototype}:
  2901. @code{int starpu_opencl_load_opencl_from_string(char *opencl_program_source, struct starpu_opencl_program *opencl_programs);}
  2902. @end table
  2903. @node starpu_opencl_unload_opencl
  2904. @subsubsection @code{starpu_opencl_unload_opencl} -- Releasing OpenCL code
  2905. @table @asis
  2906. @item @emph{Description}:
  2907. TODO
  2908. @item @emph{Prototype}:
  2909. @code{int starpu_opencl_unload_opencl(struct starpu_opencl_program *opencl_programs);}
  2910. @end table
  2911. @node Loading OpenCL codelets
  2912. @subsection Loading OpenCL codelets
  2913. @menu
  2914. * starpu_opencl_load_kernel:: Loading a kernel
  2915. * starpu_opencl_relase_kernel:: Releasing a kernel
  2916. @end menu
  2917. @node starpu_opencl_load_kernel
  2918. @subsubsection @code{starpu_opencl_load_kernel} -- Loading a kernel
  2919. @table @asis
  2920. @item @emph{Description}:
  2921. TODO
  2922. @item @emph{Prototype}:
  2923. @code{int starpu_opencl_load_kernel(cl_kernel *kernel, cl_command_queue *queue, struct starpu_opencl_program *opencl_programs, char *kernel_name, int devid)
  2924. }
  2925. @end table
  2926. @node starpu_opencl_relase_kernel
  2927. @subsubsection @code{starpu_opencl_release_kernel} -- Releasing a kernel
  2928. @table @asis
  2929. @item @emph{Description}:
  2930. TODO
  2931. @item @emph{Prototype}:
  2932. @code{int starpu_opencl_release_kernel(cl_kernel kernel);}
  2933. @end table
  2934. @node Cell extensions
  2935. @section Cell extensions
  2936. nothing yet.
  2937. @node Miscellaneous helpers
  2938. @section Miscellaneous helpers
  2939. @menu
  2940. * starpu_execute_on_each_worker:: Execute a function on a subset of workers
  2941. @end menu
  2942. @node starpu_execute_on_each_worker
  2943. @subsection @code{starpu_execute_on_each_worker} -- Execute a function on a subset of workers
  2944. @table @asis
  2945. @item @emph{Description}:
  2946. When calling this method, the offloaded function specified by the first argument is
  2947. executed by every StarPU worker that may execute the function.
  2948. The second argument is passed to the offloaded function.
  2949. The last argument specifies on which types of processing units the function
  2950. should be executed. Similarly to the @code{where} field of the
  2951. @code{starpu_codelet} structure, it is possible to specify that the function
  2952. should be executed on every CUDA device and every CPU by passing
  2953. @code{STARPU_CPU|STARPU_CUDA}.
  2954. This function blocks until the function has been executed on every appropriate
  2955. processing units, so that it may not be called from a callback function for
  2956. instance.
  2957. @item @emph{Prototype}:
  2958. @code{void starpu_execute_on_each_worker(void (*func)(void *), void *arg, uint32_t where);}
  2959. @end table
  2960. @c ---------------------------------------------------------------------
  2961. @c Advanced Topics
  2962. @c ---------------------------------------------------------------------
  2963. @node Advanced Topics
  2964. @chapter Advanced Topics
  2965. @menu
  2966. * Defining a new data interface::
  2967. * Defining a new scheduling policy::
  2968. @end menu
  2969. @node Defining a new data interface
  2970. @section Defining a new data interface
  2971. @menu
  2972. * struct starpu_data_interface_ops_t:: Per-interface methods
  2973. * struct starpu_data_copy_methods:: Per-interface data transfer methods
  2974. * An example of data interface:: An example of data interface
  2975. @end menu
  2976. @c void *starpu_data_get_interface_on_node(starpu_data_handle handle, unsigned memory_node); TODO
  2977. @node struct starpu_data_interface_ops_t
  2978. @subsection @code{struct starpu_data_interface_ops_t} -- Per-interface methods
  2979. @table @asis
  2980. @item @emph{Description}:
  2981. TODO describe all the different fields
  2982. @end table
  2983. @node struct starpu_data_copy_methods
  2984. @subsection @code{struct starpu_data_copy_methods} -- Per-interface data transfer methods
  2985. @table @asis
  2986. @item @emph{Description}:
  2987. TODO describe all the different fields
  2988. @end table
  2989. @node An example of data interface
  2990. @subsection An example of data interface
  2991. @table @asis
  2992. TODO
  2993. @end table
  2994. @node Defining a new scheduling policy
  2995. @section Defining a new scheduling policy
  2996. TODO
  2997. A full example showing how to define a new scheduling policy is available in
  2998. the StarPU sources in the directory @code{examples/scheduler/}.
  2999. @menu
  3000. * struct starpu_sched_policy_s::
  3001. * starpu_worker_set_sched_condition::
  3002. * starpu_sched_set_min_priority:: Set the minimum priority level
  3003. * starpu_sched_set_max_priority:: Set the maximum priority level
  3004. * Source code::
  3005. @end menu
  3006. @node struct starpu_sched_policy_s
  3007. @subsection @code{struct starpu_sched_policy_s} -- Scheduler methods
  3008. @table @asis
  3009. @item @emph{Description}:
  3010. This structure contains all the methods that implement a scheduling policy. An
  3011. application may specify which scheduling strategy in the @code{sched_policy}
  3012. field of the @code{starpu_conf} structure passed to the @code{starpu_init}
  3013. function.
  3014. @item @emph{Fields}:
  3015. @table @asis
  3016. @item @code{init_sched}:
  3017. Initialize the scheduling policy.
  3018. @item @code{deinit_sched}:
  3019. Cleanup the scheduling policy.
  3020. @item @code{push_task}:
  3021. Insert a task into the scheduler.
  3022. @item @code{push_prio_task}:
  3023. Insert a priority task into the scheduler.
  3024. @item @code{pop_task}:
  3025. Get a task from the scheduler. The mutex associated to the worker is already
  3026. taken when this method is called.
  3027. @item @code{pop_every_task}:
  3028. Remove all available tasks from the scheduler (tasks are chained by the means
  3029. of the prev and next fields of the starpu_task structure). The mutex associated
  3030. to the worker is already taken when this method is called.
  3031. @item @code{post_exec_hook} (optionnal):
  3032. This method is called every time a task has been executed.
  3033. @item @code{policy_name}:
  3034. Name of the policy (optionnal).
  3035. @item @code{policy_description}:
  3036. Description of the policy (optionnal).
  3037. @end table
  3038. @end table
  3039. @node starpu_worker_set_sched_condition
  3040. @subsection @code{starpu_worker_set_sched_condition} -- Specify the condition variable associated to a worker
  3041. @table @asis
  3042. @item @emph{Description}:
  3043. When there is no available task for a worker, StarPU blocks this worker on a
  3044. condition variable. This function specifies which condition variable (and the
  3045. associated mutex) should be used to block (and to wake up) a worker. Note that
  3046. multiple workers may use the same condition variable. For instance, in the case
  3047. of a scheduling strategy with a single task queue, the same condition variable
  3048. would be used to block and wake up all workers.
  3049. The initialization method of a scheduling strategy (@code{init_sched}) must
  3050. call this function once per worker.
  3051. @item @emph{Prototype}:
  3052. @code{void starpu_worker_set_sched_condition(int workerid, pthread_cond_t *sched_cond, pthread_mutex_t *sched_mutex);}
  3053. @end table
  3054. @node starpu_sched_set_min_priority
  3055. @subsection @code{starpu_sched_set_min_priority}
  3056. @table @asis
  3057. @item @emph{Description}:
  3058. Defines the minimum priority level supported by the scheduling policy. The
  3059. default minimum priority level is the same as the default priority level which
  3060. is 0 by convention. The application may access that value by calling the
  3061. @code{starpu_sched_get_min_priority} function. This function should only be
  3062. called from the initialization method of the scheduling policy, and should not
  3063. be used directly from the application.
  3064. @item @emph{Prototype}:
  3065. @code{void starpu_sched_set_min_priority(int min_prio)}
  3066. @end table
  3067. @node starpu_sched_set_max_priority
  3068. @subsection @code{starpu_sched_set_max_priority}
  3069. @table @asis
  3070. @item @emph{Description}:
  3071. Defines the maximum priority level supported by the scheduling policy. The
  3072. default maximum priority level is 1. The application may access that value by
  3073. calling the @code{starpu_sched_get_max_priority} function. This function should
  3074. only be called from the initialization method of the scheduling policy, and
  3075. should not be used directly from the application.
  3076. @item @emph{Prototype}:
  3077. @code{void starpu_sched_set_min_priority(int max_prio)}
  3078. @end table
  3079. @node Source code
  3080. @subsection Source code
  3081. @cartouche
  3082. @smallexample
  3083. static struct starpu_sched_policy_s dummy_sched_policy = @{
  3084. .init_sched = init_dummy_sched,
  3085. .deinit_sched = deinit_dummy_sched,
  3086. .push_task = push_task_dummy,
  3087. .push_prio_task = NULL,
  3088. .pop_task = pop_task_dummy,
  3089. .post_exec_hook = NULL,
  3090. .pop_every_task = NULL,
  3091. .policy_name = "dummy",
  3092. .policy_description = "dummy scheduling strategy"
  3093. @};
  3094. @end smallexample
  3095. @end cartouche
  3096. @c ---------------------------------------------------------------------
  3097. @c Appendices
  3098. @c ---------------------------------------------------------------------
  3099. @c ---------------------------------------------------------------------
  3100. @c Full source code for the 'Scaling a Vector' example
  3101. @c ---------------------------------------------------------------------
  3102. @node Full source code for the 'Scaling a Vector' example
  3103. @appendix Full source code for the 'Scaling a Vector' example
  3104. @menu
  3105. * Main application::
  3106. * CPU Codelet::
  3107. * CUDA Codelet::
  3108. * OpenCL Codelet::
  3109. @end menu
  3110. @node Main application
  3111. @section Main application
  3112. @smallexample
  3113. @include vector_scal_c.texi
  3114. @end smallexample
  3115. @node CPU Codelet
  3116. @section CPU Codelet
  3117. @smallexample
  3118. @include vector_scal_cpu.texi
  3119. @end smallexample
  3120. @node CUDA Codelet
  3121. @section CUDA Codelet
  3122. @smallexample
  3123. @include vector_scal_cuda.texi
  3124. @end smallexample
  3125. @node OpenCL Codelet
  3126. @section OpenCL Codelet
  3127. @menu
  3128. * Invoking the kernel::
  3129. * Source of the kernel::
  3130. @end menu
  3131. @node Invoking the kernel
  3132. @subsection Invoking the kernel
  3133. @smallexample
  3134. @include vector_scal_opencl.texi
  3135. @end smallexample
  3136. @node Source of the kernel
  3137. @subsection Source of the kernel
  3138. @smallexample
  3139. @include vector_scal_opencl_codelet.texi
  3140. @end smallexample
  3141. @bye