starpu.texi 164 KB

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