starpu.texi 154 KB

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