starpu.texi 173 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593
  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. The integration of MPI transfers within task parallelism is done in a
  1510. very natural way by the means of asynchronous interactions between the
  1511. application and StarPU.
  1512. @menu
  1513. * The API::
  1514. * Simple Example::
  1515. * MPI Insert Task Utility::
  1516. @end menu
  1517. @node The API
  1518. @section The API
  1519. @subsection Initialisation
  1520. @deftypefun int starpu_mpi_initialize (void)
  1521. @end deftypefun
  1522. @deftypefun int starpu_mpi_initialize_extended (int @var{initialize_mpi}, int *@var{rank}, int *@var{world_size})
  1523. @end deftypefun
  1524. @deftypefun int starpu_mpi_shutdown (void)
  1525. @end deftypefun
  1526. @subsection Communication
  1527. @deftypefun int starpu_mpi_isend (starpu_data_handle @var{data_handle}, starpu_mpi_req *@var{req}, int @var{dest}, int @var{mpi_tag}, MPI_Comm @var{comm})
  1528. @end deftypefun
  1529. @deftypefun int starpu_mpi_irecv (starpu_data_handle @var{data_handle}, starpu_mpi_req *@var{req}, int @var{source}, int @var{mpi_tag}, MPI_Comm @var{comm})
  1530. @end deftypefun
  1531. @deftypefun int starpu_mpi_send (starpu_data_handle @var{data_handle}, int @var{dest}, int @var{mpi_tag}, MPI_Comm @var{comm})
  1532. @end deftypefun
  1533. @deftypefun int starpu_mpi_recv (starpu_data_handle @var{data_handle}, int @var{source}, int @var{mpi_tag}, MPI_Comm @var{comm}, MPI_Status *@var{status})
  1534. @end deftypefun
  1535. @deftypefun int starpu_mpi_isend_detached (starpu_data_handle @var{data_handle}, int @var{dest}, int @var{mpi_tag}, MPI_Comm @var{comm}, void (*@var{callback})(void *), void *@var{arg})
  1536. @end deftypefun
  1537. @deftypefun int starpu_mpi_irecv_detached (starpu_data_handle @var{data_handle}, int @var{source}, int @var{mpi_tag}, MPI_Comm @var{comm}, void (*@var{callback})(void *), void *@var{arg})
  1538. @end deftypefun
  1539. @deftypefun int starpu_mpi_wait (starpu_mpi_req *@var{req}, MPI_Status *@var{status})
  1540. @end deftypefun
  1541. @deftypefun int starpu_mpi_test (starpu_mpi_req *@var{req}, int *@var{flag}, MPI_Status *@var{status})
  1542. @end deftypefun
  1543. @deftypefun int starpu_mpi_barrier (MPI_Comm @var{comm})
  1544. @end deftypefun
  1545. @deftypefun int starpu_mpi_isend_detached_unlock_tag (starpu_data_handle @var{data_handle}, int @var{dest}, int @var{mpi_tag}, MPI_Comm @var{comm}, starpu_tag_t @var{tag})
  1546. When the transfer is completed, the tag is unlocked
  1547. @end deftypefun
  1548. @deftypefun int starpu_mpi_irecv_detached_unlock_tag (starpu_data_handle @var{data_handle}, int @var{source}, int @var{mpi_tag}, MPI_Comm @var{comm}, starpu_tag_t @var{tag})
  1549. @end deftypefun
  1550. @deftypefun int starpu_mpi_isend_array_detached_unlock_tag (unsigned @var{array_size}, starpu_data_handle *@var{data_handle}, int *@var{dest}, int *@var{mpi_tag}, MPI_Comm *@var{comm}, starpu_tag_t @var{tag})
  1551. Asynchronously send an array of buffers, and unlocks the tag once all
  1552. of them are transmitted.
  1553. @end deftypefun
  1554. @deftypefun int starpu_mpi_irecv_array_detached_unlock_tag (unsigned @var{array_size}, starpu_data_handle *@var{data_handle}, int *@var{source}, int *@var{mpi_tag}, MPI_Comm *@var{comm}, starpu_tag_t @var{tag})
  1555. @end deftypefun
  1556. @page
  1557. @node Simple Example
  1558. @section Simple Example
  1559. @cartouche
  1560. @smallexample
  1561. void increment_token(void)
  1562. @{
  1563. struct starpu_task *task = starpu_task_create();
  1564. task->cl = &increment_cl;
  1565. task->buffers[0].handle = token_handle;
  1566. task->buffers[0].mode = STARPU_RW;
  1567. starpu_task_submit(task);
  1568. @}
  1569. @end smallexample
  1570. @end cartouche
  1571. @cartouche
  1572. @smallexample
  1573. int main(int argc, char **argv)
  1574. @{
  1575. int rank, size;
  1576. starpu_init(NULL);
  1577. starpu_mpi_initialize_extended(1, &rank, &size);
  1578. starpu_vector_data_register(&token_handle, 0, (uintptr_t)&token, 1, sizeof(unsigned));
  1579. unsigned nloops = NITER;
  1580. unsigned loop;
  1581. unsigned last_loop = nloops - 1;
  1582. unsigned last_rank = size - 1;
  1583. @end smallexample
  1584. @end cartouche
  1585. @cartouche
  1586. @smallexample
  1587. for (loop = 0; loop < nloops; loop++) @{
  1588. int tag = loop*size + rank;
  1589. if (!((loop == 0) && (rank == 0)))
  1590. @{
  1591. starpu_mpi_irecv_detached(token_handle, (rank+size-1)%size, tag,
  1592. MPI_COMM_WORLD, NULL, NULL);
  1593. @}
  1594. else @{
  1595. token = 0;
  1596. fprintf(stdout, "Start with token value %d\n", token);
  1597. @}
  1598. increment_token();
  1599. if (!((loop == last_loop) && (rank == last_rank)))
  1600. @{
  1601. starpu_mpi_isend_detached(token_handle, (rank+1)%size, tag+1,
  1602. MPI_COMM_WORLD, NULL, NULL);
  1603. @}
  1604. else @{
  1605. starpu_data_acquire(token_handle, STARPU_R);
  1606. fprintf(stdout, "Finished : token value %d\n", token);
  1607. starpu_data_release(token_handle);
  1608. @}
  1609. @}
  1610. starpu_task_wait_for_all();
  1611. @end smallexample
  1612. @end cartouche
  1613. @cartouche
  1614. @smallexample
  1615. starpu_mpi_shutdown();
  1616. starpu_shutdown();
  1617. if (rank == last_rank)
  1618. @{
  1619. fprintf(stderr, "[%d] token = %d == %d * %d ?\n", rank, token, nloops, size);
  1620. STARPU_ASSERT(token == nloops*size);
  1621. @}
  1622. @end smallexample
  1623. @end cartouche
  1624. @page
  1625. @node MPI Insert Task Utility
  1626. @section MPI Insert Task Utility
  1627. @deftypefun void starpu_mpi_insert_task (MPI_Comm @var{comm}, starpu_codelet *@var{cl}, ...)
  1628. Create and submit a task corresponding to @var{cl} with the following
  1629. arguments. The argument list must be zero-terminated.
  1630. The arguments following the codelets are the same types as for the
  1631. function @code{starpu_insert_task} defined in @ref{Insert Task
  1632. Utility}. The extra argument @code{STARPU_EXECUTE} followed by an
  1633. integer allows to specify the node to execute the codelet.
  1634. The algorithm is as follows:
  1635. @enumerate
  1636. @item Find out whether we are to execute the codelet because we own the
  1637. data to be written to. If different tasks own data to be written to,
  1638. the argument @code{STARPU_EXECUTE} should be used to specify the
  1639. executing task @code{ET}.
  1640. @item Send and receive data as requested. Tasks owning data which need
  1641. to be read by the executing task @code{ET} are sending them to @code{ET}.
  1642. @item Execute the codelet. This is done by the task selected in the
  1643. 1st step of the algorithm.
  1644. @item In the case when different tasks own data to be written to, send
  1645. W data back to their owners.
  1646. @end enumerate
  1647. The algorithm also includes a cache mechanism that allows not to send
  1648. data twice to the same task, unless the data has been modified.
  1649. @end deftypefun
  1650. @deftypefun void starpu_mpi_get_data_on_node (MPI_Comm @var{comm}, starpu_data_handle @var{data_handle}, int @var{node})
  1651. @end deftypefun
  1652. @page
  1653. Here an example showing how to use @code{starpu_mpi_insert_task}. One
  1654. first needs to define a distribution function which specifies the
  1655. locality of the data. Note that that distribution information needs to
  1656. be given to StarPU by calling @code{starpu_data_set_rank}.
  1657. @cartouche
  1658. @smallexample
  1659. /* Returns the MPI node number where data is */
  1660. int my_distrib(int x, int y, int nb_nodes) @{
  1661. /* Cyclic distrib */
  1662. return ((int)(x / sqrt(nb_nodes) + (y / sqrt(nb_nodes)) * sqrt(nb_nodes))) % nb_nodes;
  1663. // /* Linear distrib */
  1664. // return x / sqrt(nb_nodes) + (y / sqrt(nb_nodes)) * X;
  1665. @}
  1666. @end smallexample
  1667. @end cartouche
  1668. Now the data can be registered within StarPU. Data which are not
  1669. owned but will be needed for computations can be registered through
  1670. the lazy allocation mechanism, i.e. with a @code{home_node} set to -1.
  1671. StarPU will automatically allocate the memory when it is used for the
  1672. first time.
  1673. @cartouche
  1674. @smallexample
  1675. unsigned matrix[X][Y];
  1676. starpu_data_handle data_handles[X][Y];
  1677. for(x = 0; x < X; x++) @{
  1678. for (y = 0; y < Y; y++) @{
  1679. int mpi_rank = my_distrib(x, y, size);
  1680. if (mpi_rank == rank)
  1681. /* Owning data */
  1682. starpu_variable_data_register(&data_handles[x][y], 0,
  1683. (uintptr_t)&(matrix[x][y]), sizeof(unsigned));
  1684. else if (rank == mpi_rank+1 || rank == mpi_rank-1)
  1685. /* I don't own that index, but will need it for my computations */
  1686. starpu_variable_data_register(&data_handles[x][y], -1,
  1687. (uintptr_t)NULL, sizeof(unsigned));
  1688. else
  1689. /* I know it's useless to allocate anything for this */
  1690. data_handles[x][y] = NULL;
  1691. if (data_handles[x][y])
  1692. starpu_data_set_rank(data_handles[x][y], mpi_rank);
  1693. @}
  1694. @}
  1695. @end smallexample
  1696. @end cartouche
  1697. Now @code{starpu_mpi_insert_task()} can be called for the different
  1698. steps of the application.
  1699. @cartouche
  1700. @smallexample
  1701. for(loop=0 ; loop<niter; loop++)
  1702. for (x = 1; x < X-1; x++)
  1703. for (y = 1; y < Y-1; y++)
  1704. starpu_mpi_insert_task(MPI_COMM_WORLD, &stencil5_cl,
  1705. STARPU_RW, data_handles[x][y],
  1706. STARPU_R, data_handles[x-1][y],
  1707. STARPU_R, data_handles[x+1][y],
  1708. STARPU_R, data_handles[x][y-1],
  1709. STARPU_R, data_handles[x][y+1],
  1710. 0);
  1711. starpu_task_wait_for_all();
  1712. @end smallexample
  1713. @end cartouche
  1714. @c ---------------------------------------------------------------------
  1715. @c Configuration options
  1716. @c ---------------------------------------------------------------------
  1717. @node Configuring StarPU
  1718. @chapter Configuring StarPU
  1719. @menu
  1720. * Compilation configuration::
  1721. * Execution configuration through environment variables::
  1722. @end menu
  1723. @node Compilation configuration
  1724. @section Compilation configuration
  1725. The following arguments can be given to the @code{configure} script.
  1726. @menu
  1727. * Common configuration::
  1728. * Configuring workers::
  1729. * Advanced configuration::
  1730. @end menu
  1731. @node Common configuration
  1732. @subsection Common configuration
  1733. @menu
  1734. * --enable-debug::
  1735. * --enable-fast::
  1736. * --enable-verbose::
  1737. * --enable-coverage::
  1738. @end menu
  1739. @node --enable-debug
  1740. @subsubsection @code{--enable-debug}
  1741. @table @asis
  1742. @item @emph{Description}:
  1743. Enable debugging messages.
  1744. @end table
  1745. @node --enable-fast
  1746. @subsubsection @code{--enable-fast}
  1747. @table @asis
  1748. @item @emph{Description}:
  1749. Do not enforce assertions, saves a lot of time spent to compute them otherwise.
  1750. @end table
  1751. @node --enable-verbose
  1752. @subsubsection @code{--enable-verbose}
  1753. @table @asis
  1754. @item @emph{Description}:
  1755. Augment the verbosity of the debugging messages. This can be disabled
  1756. at runtime by setting the environment variable @code{STARPU_SILENT} to
  1757. any value.
  1758. @smallexample
  1759. % STARPU_SILENT=1 ./vector_scal
  1760. @end smallexample
  1761. @end table
  1762. @node --enable-coverage
  1763. @subsubsection @code{--enable-coverage}
  1764. @table @asis
  1765. @item @emph{Description}:
  1766. Enable flags for the @code{gcov} coverage tool.
  1767. @end table
  1768. @node Configuring workers
  1769. @subsection Configuring workers
  1770. @menu
  1771. * --enable-nmaxcpus::
  1772. * --disable-cpu::
  1773. * --enable-maxcudadev::
  1774. * --disable-cuda::
  1775. * --with-cuda-dir::
  1776. * --with-cuda-include-dir::
  1777. * --with-cuda-lib-dir::
  1778. * --enable-maxopencldev::
  1779. * --disable-opencl::
  1780. * --with-opencl-dir::
  1781. * --with-opencl-include-dir::
  1782. * --with-opencl-lib-dir::
  1783. * --enable-gordon::
  1784. * --with-gordon-dir::
  1785. @end menu
  1786. @node --enable-nmaxcpus
  1787. @subsubsection @code{--enable-nmaxcpus=<number>}
  1788. @table @asis
  1789. @item @emph{Description}:
  1790. Defines the maximum number of CPU cores that StarPU will support, then
  1791. available as the @code{STARPU_NMAXCPUS} macro.
  1792. @end table
  1793. @node --disable-cpu
  1794. @subsubsection @code{--disable-cpu}
  1795. @table @asis
  1796. @item @emph{Description}:
  1797. Disable the use of CPUs of the machine. Only GPUs etc. will be used.
  1798. @end table
  1799. @node --enable-maxcudadev
  1800. @subsubsection @code{--enable-maxcudadev=<number>}
  1801. @table @asis
  1802. @item @emph{Description}:
  1803. Defines the maximum number of CUDA devices that StarPU will support, then
  1804. available as the @code{STARPU_MAXCUDADEVS} macro.
  1805. @end table
  1806. @node --disable-cuda
  1807. @subsubsection @code{--disable-cuda}
  1808. @table @asis
  1809. @item @emph{Description}:
  1810. Disable the use of CUDA, even if a valid CUDA installation was detected.
  1811. @end table
  1812. @node --with-cuda-dir
  1813. @subsubsection @code{--with-cuda-dir=<path>}
  1814. @table @asis
  1815. @item @emph{Description}:
  1816. Specify the directory where CUDA is installed. This directory should notably contain
  1817. @code{include/cuda.h}.
  1818. @end table
  1819. @node --with-cuda-include-dir
  1820. @subsubsection @code{--with-cuda-include-dir=<path>}
  1821. @table @asis
  1822. @item @emph{Description}:
  1823. Specify the directory where CUDA headers are installed. This directory should
  1824. notably contain @code{cuda.h}. This defaults to @code{/include} appended to the
  1825. value given to @code{--with-cuda-dir}.
  1826. @end table
  1827. @node --with-cuda-lib-dir
  1828. @subsubsection @code{--with-cuda-lib-dir=<path>}
  1829. @table @asis
  1830. @item @emph{Description}:
  1831. Specify the directory where the CUDA library is installed. This directory should
  1832. notably contain the CUDA shared libraries (e.g. libcuda.so). This defaults to
  1833. @code{/lib} appended to the value given to @code{--with-cuda-dir}.
  1834. @end table
  1835. @node --enable-maxopencldev
  1836. @subsubsection @code{--enable-maxopencldev=<number>}
  1837. @table @asis
  1838. @item @emph{Description}:
  1839. Defines the maximum number of OpenCL devices that StarPU will support, then
  1840. available as the @code{STARPU_MAXOPENCLDEVS} macro.
  1841. @end table
  1842. @node --disable-opencl
  1843. @subsubsection @code{--disable-opencl}
  1844. @table @asis
  1845. @item @emph{Description}:
  1846. Disable the use of OpenCL, even if the SDK is detected.
  1847. @end table
  1848. @node --with-opencl-dir
  1849. @subsubsection @code{--with-opencl-dir=<path>}
  1850. @table @asis
  1851. @item @emph{Description}:
  1852. Specify the location of the OpenCL SDK. This directory should notably contain
  1853. @code{include/CL/cl.h} (or @code{include/OpenCL/cl.h} on Mac OS).
  1854. @end table
  1855. @node --with-opencl-include-dir
  1856. @subsubsection @code{--with-opencl-include-dir=<path>}
  1857. @table @asis
  1858. @item @emph{Description}:
  1859. Specify the location of OpenCL headers. This directory should notably contain
  1860. @code{CL/cl.h} (or @code{OpenCL/cl.h} on Mac OS). This defaults to
  1861. @code{/include} appended to the value given to @code{--with-opencl-dir}.
  1862. @end table
  1863. @node --with-opencl-lib-dir
  1864. @subsubsection @code{--with-opencl-lib-dir=<path>}
  1865. @table @asis
  1866. @item @emph{Description}:
  1867. Specify the location of the OpenCL library. This directory should notably
  1868. contain the OpenCL shared libraries (e.g. libOpenCL.so). This defaults to
  1869. @code{/lib} appended to the value given to @code{--with-opencl-dir}.
  1870. @end table
  1871. @node --enable-gordon
  1872. @subsubsection @code{--enable-gordon}
  1873. @table @asis
  1874. @item @emph{Description}:
  1875. Enable the use of the Gordon runtime for Cell SPUs.
  1876. @c TODO: rather default to enabled when detected
  1877. @end table
  1878. @node --with-gordon-dir
  1879. @subsubsection @code{--with-gordon-dir=<path>}
  1880. @table @asis
  1881. @item @emph{Description}:
  1882. Specify the location of the Gordon SDK.
  1883. @end table
  1884. @node Advanced configuration
  1885. @subsection Advanced configuration
  1886. @menu
  1887. * --enable-perf-debug::
  1888. * --enable-model-debug::
  1889. * --enable-stats::
  1890. * --enable-maxbuffers::
  1891. * --enable-allocation-cache::
  1892. * --enable-opengl-render::
  1893. * --enable-blas-lib::
  1894. * --with-magma::
  1895. * --with-fxt::
  1896. * --with-perf-model-dir::
  1897. * --with-mpicc::
  1898. * --with-goto-dir::
  1899. * --with-atlas-dir::
  1900. * --with-mkl-cflags::
  1901. * --with-mkl-ldflags::
  1902. @end menu
  1903. @node --enable-perf-debug
  1904. @subsubsection @code{--enable-perf-debug}
  1905. @table @asis
  1906. @item @emph{Description}:
  1907. Enable performance debugging.
  1908. @end table
  1909. @node --enable-model-debug
  1910. @subsubsection @code{--enable-model-debug}
  1911. @table @asis
  1912. @item @emph{Description}:
  1913. Enable performance model debugging.
  1914. @end table
  1915. @node --enable-stats
  1916. @subsubsection @code{--enable-stats}
  1917. @table @asis
  1918. @item @emph{Description}:
  1919. Enable statistics.
  1920. @end table
  1921. @node --enable-maxbuffers
  1922. @subsubsection @code{--enable-maxbuffers=<nbuffers>}
  1923. @table @asis
  1924. @item @emph{Description}:
  1925. Define the maximum number of buffers that tasks will be able to take
  1926. as parameters, then available as the @code{STARPU_NMAXBUFS} macro.
  1927. @end table
  1928. @node --enable-allocation-cache
  1929. @subsubsection @code{--enable-allocation-cache}
  1930. @table @asis
  1931. @item @emph{Description}:
  1932. Enable the use of a data allocation cache to avoid the cost of it with
  1933. CUDA. Still experimental.
  1934. @end table
  1935. @node --enable-opengl-render
  1936. @subsubsection @code{--enable-opengl-render}
  1937. @table @asis
  1938. @item @emph{Description}:
  1939. Enable the use of OpenGL for the rendering of some examples.
  1940. @c TODO: rather default to enabled when detected
  1941. @end table
  1942. @node --enable-blas-lib
  1943. @subsubsection @code{--enable-blas-lib=<name>}
  1944. @table @asis
  1945. @item @emph{Description}:
  1946. Specify the blas library to be used by some of the examples. The
  1947. library has to be 'atlas' or 'goto'.
  1948. @end table
  1949. @node --with-magma
  1950. @subsubsection @code{--with-magma=<path>}
  1951. @table @asis
  1952. @item @emph{Description}:
  1953. Specify where magma is installed. This directory should notably contain
  1954. @code{include/magmablas.h}.
  1955. @end table
  1956. @node --with-fxt
  1957. @subsubsection @code{--with-fxt=<path>}
  1958. @table @asis
  1959. @item @emph{Description}:
  1960. Specify the location of FxT (for generating traces and rendering them
  1961. using ViTE). This directory should notably contain
  1962. @code{include/fxt/fxt.h}.
  1963. @c TODO add ref to other section
  1964. @end table
  1965. @node --with-perf-model-dir
  1966. @subsubsection @code{--with-perf-model-dir=<dir>}
  1967. @table @asis
  1968. @item @emph{Description}:
  1969. Specify where performance models should be stored (instead of defaulting to the
  1970. current user's home).
  1971. @end table
  1972. @node --with-mpicc
  1973. @subsubsection @code{--with-mpicc=<path to mpicc>}
  1974. @table @asis
  1975. @item @emph{Description}:
  1976. Specify the location of the @code{mpicc} compiler to be used for starpumpi.
  1977. @end table
  1978. @node --with-goto-dir
  1979. @subsubsection @code{--with-goto-dir=<dir>}
  1980. @table @asis
  1981. @item @emph{Description}:
  1982. Specify the location of GotoBLAS.
  1983. @end table
  1984. @node --with-atlas-dir
  1985. @subsubsection @code{--with-atlas-dir=<dir>}
  1986. @table @asis
  1987. @item @emph{Description}:
  1988. Specify the location of ATLAS. This directory should notably contain
  1989. @code{include/cblas.h}.
  1990. @end table
  1991. @node --with-mkl-cflags
  1992. @subsubsection @code{--with-mkl-cflags=<cflags>}
  1993. @table @asis
  1994. @item @emph{Description}:
  1995. Specify the compilation flags for the MKL Library.
  1996. @end table
  1997. @node --with-mkl-ldflags
  1998. @subsubsection @code{--with-mkl-ldflags=<ldflags>}
  1999. @table @asis
  2000. @item @emph{Description}:
  2001. Specify the linking flags for the MKL Library. Note that the
  2002. @url{http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/}
  2003. website provides a script to determine the linking flags.
  2004. @end table
  2005. @c ---------------------------------------------------------------------
  2006. @c Environment variables
  2007. @c ---------------------------------------------------------------------
  2008. @node Execution configuration through environment variables
  2009. @section Execution configuration through environment variables
  2010. @menu
  2011. * Workers:: Configuring workers
  2012. * Scheduling:: Configuring the Scheduling engine
  2013. * Misc:: Miscellaneous and debug
  2014. @end menu
  2015. Note: the values given in @code{starpu_conf} structure passed when
  2016. calling @code{starpu_init} will override the values of the environment
  2017. variables.
  2018. @node Workers
  2019. @subsection Configuring workers
  2020. @menu
  2021. * STARPU_NCPUS:: Number of CPU workers
  2022. * STARPU_NCUDA:: Number of CUDA workers
  2023. * STARPU_NOPENCL:: Number of OpenCL workers
  2024. * STARPU_NGORDON:: Number of SPU workers (Cell)
  2025. * STARPU_WORKERS_CPUID:: Bind workers to specific CPUs
  2026. * STARPU_WORKERS_CUDAID:: Select specific CUDA devices
  2027. * STARPU_WORKERS_OPENCLID:: Select specific OpenCL devices
  2028. @end menu
  2029. @node STARPU_NCPUS
  2030. @subsubsection @code{STARPU_NCPUS} -- Number of CPU workers
  2031. @table @asis
  2032. @item @emph{Description}:
  2033. Specify the number of CPU workers (thus not including workers dedicated to control acceleratores). Note that by default, StarPU will not allocate
  2034. more CPU workers than there are physical CPUs, and that some CPUs are used to control
  2035. the accelerators.
  2036. @end table
  2037. @node STARPU_NCUDA
  2038. @subsubsection @code{STARPU_NCUDA} -- Number of CUDA workers
  2039. @table @asis
  2040. @item @emph{Description}:
  2041. Specify the number of CUDA devices that StarPU can use. If
  2042. @code{STARPU_NCUDA} is lower than the number of physical devices, it is
  2043. possible to select which CUDA devices should be used by the means of the
  2044. @code{STARPU_WORKERS_CUDAID} environment variable. By default, StarPU will
  2045. create as many CUDA workers as there are CUDA devices.
  2046. @end table
  2047. @node STARPU_NOPENCL
  2048. @subsubsection @code{STARPU_NOPENCL} -- Number of OpenCL workers
  2049. @table @asis
  2050. @item @emph{Description}:
  2051. OpenCL equivalent of the @code{STARPU_NCUDA} environment variable.
  2052. @end table
  2053. @node STARPU_NGORDON
  2054. @subsubsection @code{STARPU_NGORDON} -- Number of SPU workers (Cell)
  2055. @table @asis
  2056. @item @emph{Description}:
  2057. Specify the number of SPUs that StarPU can use.
  2058. @end table
  2059. @node STARPU_WORKERS_CPUID
  2060. @subsubsection @code{STARPU_WORKERS_CPUID} -- Bind workers to specific CPUs
  2061. @table @asis
  2062. @item @emph{Description}:
  2063. Passing an array of integers (starting from 0) in @code{STARPU_WORKERS_CPUID}
  2064. specifies on which logical CPU the different workers should be
  2065. bound. For instance, if @code{STARPU_WORKERS_CPUID = "0 1 4 5"}, the first
  2066. worker will be bound to logical CPU #0, the second CPU worker will be bound to
  2067. logical CPU #1 and so on. Note that the logical ordering of the CPUs is either
  2068. determined by the OS, or provided by the @code{hwloc} library in case it is
  2069. available.
  2070. Note that the first workers correspond to the CUDA workers, then come the
  2071. OpenCL and the SPU, and finally the CPU workers. For example if
  2072. we have @code{STARPU_NCUDA=1}, @code{STARPU_NOPENCL=1}, @code{STARPU_NCPUS=2}
  2073. and @code{STARPU_WORKERS_CPUID = "0 2 1 3"}, the CUDA device will be controlled
  2074. by logical CPU #0, the OpenCL device will be controlled by logical CPU #2, and
  2075. the logical CPUs #1 and #3 will be used by the CPU workers.
  2076. If the number of workers is larger than the array given in
  2077. @code{STARPU_WORKERS_CPUID}, the workers are bound to the logical CPUs in a
  2078. round-robin fashion: if @code{STARPU_WORKERS_CPUID = "0 1"}, the first and the
  2079. third (resp. second and fourth) workers will be put on CPU #0 (resp. CPU #1).
  2080. This variable is ignored if the @code{use_explicit_workers_bindid} flag of the
  2081. @code{starpu_conf} structure passed to @code{starpu_init} is set.
  2082. @end table
  2083. @node STARPU_WORKERS_CUDAID
  2084. @subsubsection @code{STARPU_WORKERS_CUDAID} -- Select specific CUDA devices
  2085. @table @asis
  2086. @item @emph{Description}:
  2087. Similarly to the @code{STARPU_WORKERS_CPUID} environment variable, it is
  2088. possible to select which CUDA devices should be used by StarPU. On a machine
  2089. equipped with 4 GPUs, setting @code{STARPU_WORKERS_CUDAID = "1 3"} and
  2090. @code{STARPU_NCUDA=2} specifies that 2 CUDA workers should be created, and that
  2091. they should use CUDA devices #1 and #3 (the logical ordering of the devices is
  2092. the one reported by CUDA).
  2093. This variable is ignored if the @code{use_explicit_workers_cuda_gpuid} flag of
  2094. the @code{starpu_conf} structure passed to @code{starpu_init} is set.
  2095. @end table
  2096. @node STARPU_WORKERS_OPENCLID
  2097. @subsubsection @code{STARPU_WORKERS_OPENCLID} -- Select specific OpenCL devices
  2098. @table @asis
  2099. @item @emph{Description}:
  2100. OpenCL equivalent of the @code{STARPU_WORKERS_CUDAID} environment variable.
  2101. This variable is ignored if the @code{use_explicit_workers_opencl_gpuid} flag of
  2102. the @code{starpu_conf} structure passed to @code{starpu_init} is set.
  2103. @end table
  2104. @node Scheduling
  2105. @subsection Configuring the Scheduling engine
  2106. @menu
  2107. * STARPU_SCHED:: Scheduling policy
  2108. * STARPU_CALIBRATE:: Calibrate performance models
  2109. * STARPU_PREFETCH:: Use data prefetch
  2110. * STARPU_SCHED_ALPHA:: Computation factor
  2111. * STARPU_SCHED_BETA:: Communication factor
  2112. @end menu
  2113. @node STARPU_SCHED
  2114. @subsubsection @code{STARPU_SCHED} -- Scheduling policy
  2115. @table @asis
  2116. @item @emph{Description}:
  2117. This chooses between the different scheduling policies proposed by StarPU: work
  2118. random, stealing, greedy, with performance models, etc.
  2119. Use @code{STARPU_SCHED=help} to get the list of available schedulers.
  2120. @end table
  2121. @node STARPU_CALIBRATE
  2122. @subsubsection @code{STARPU_CALIBRATE} -- Calibrate performance models
  2123. @table @asis
  2124. @item @emph{Description}:
  2125. If this variable is set to 1, the performance models are calibrated during
  2126. the execution. If it is set to 2, the previous values are dropped to restart
  2127. calibration from scratch. Setting this variable to 0 disable calibration, this
  2128. is the default behaviour.
  2129. Note: this currently only applies to @code{dm}, @code{dmda} and @code{heft} scheduling policies.
  2130. @end table
  2131. @node STARPU_PREFETCH
  2132. @subsubsection @code{STARPU_PREFETCH} -- Use data prefetch
  2133. @table @asis
  2134. @item @emph{Description}:
  2135. This variable indicates whether data prefetching should be enabled (0 means
  2136. that it is disabled). If prefetching is enabled, when a task is scheduled to be
  2137. executed e.g. on a GPU, StarPU will request an asynchronous transfer in
  2138. advance, so that data is already present on the GPU when the task starts. As a
  2139. result, computation and data transfers are overlapped.
  2140. Note that prefetching is enabled by default in StarPU.
  2141. @end table
  2142. @node STARPU_SCHED_ALPHA
  2143. @subsubsection @code{STARPU_SCHED_ALPHA} -- Computation factor
  2144. @table @asis
  2145. @item @emph{Description}:
  2146. To estimate the cost of a task StarPU takes into account the estimated
  2147. computation time (obtained thanks to performance models). The alpha factor is
  2148. the coefficient to be applied to it before adding it to the communication part.
  2149. @end table
  2150. @node STARPU_SCHED_BETA
  2151. @subsubsection @code{STARPU_SCHED_BETA} -- Communication factor
  2152. @table @asis
  2153. @item @emph{Description}:
  2154. To estimate the cost of a task StarPU takes into account the estimated
  2155. data transfer time (obtained thanks to performance models). The beta factor is
  2156. the coefficient to be applied to it before adding it to the computation part.
  2157. @end table
  2158. @node Misc
  2159. @subsection Miscellaneous and debug
  2160. @menu
  2161. * STARPU_SILENT:: Disable verbose mode
  2162. * STARPU_LOGFILENAME:: Select debug file name
  2163. * STARPU_FXT_PREFIX:: FxT trace location
  2164. * STARPU_LIMIT_GPU_MEM:: Restrict memory size on the GPUs
  2165. * STARPU_GENERATE_TRACE:: Generate a Paje trace when StarPU is shut down
  2166. @end menu
  2167. @node STARPU_SILENT
  2168. @subsubsection @code{STARPU_SILENT} -- Disable verbose mode
  2169. @table @asis
  2170. @item @emph{Description}:
  2171. This variable allows to disable verbose mode at runtime when StarPU
  2172. has been configured with the option @code{--enable-verbose}.
  2173. @end table
  2174. @node STARPU_LOGFILENAME
  2175. @subsubsection @code{STARPU_LOGFILENAME} -- Select debug file name
  2176. @table @asis
  2177. @item @emph{Description}:
  2178. This variable specifies in which file the debugging output should be saved to.
  2179. @end table
  2180. @node STARPU_FXT_PREFIX
  2181. @subsubsection @code{STARPU_FXT_PREFIX} -- FxT trace location
  2182. @table @asis
  2183. @item @emph{Description}
  2184. This variable specifies in which directory to save the trace generated if FxT is enabled.
  2185. @end table
  2186. @node STARPU_LIMIT_GPU_MEM
  2187. @subsubsection @code{STARPU_LIMIT_GPU_MEM} -- Restrict memory size on the GPUs
  2188. @table @asis
  2189. @item @emph{Description}
  2190. This variable specifies the maximum number of megabytes that should be
  2191. available to the application on each GPUs. In case this value is smaller than
  2192. the size of the memory of a GPU, StarPU pre-allocates a buffer to waste memory
  2193. on the device. This variable is intended to be used for experimental purposes
  2194. as it emulates devices that have a limited amount of memory.
  2195. @end table
  2196. @node STARPU_GENERATE_TRACE
  2197. @subsubsection @code{STARPU_GENERATE_TRACE} -- Generate a Paje trace when StarPU is shut down
  2198. @table @asis
  2199. @item @emph{Description}
  2200. When set to 1, this variable indicates that StarPU should automatically
  2201. generate a Paje trace when starpu_shutdown is called.
  2202. @end table
  2203. @c ---------------------------------------------------------------------
  2204. @c StarPU API
  2205. @c ---------------------------------------------------------------------
  2206. @node StarPU API
  2207. @chapter StarPU API
  2208. @menu
  2209. * Initialization and Termination:: Initialization and Termination methods
  2210. * Workers' Properties:: Methods to enumerate workers' properties
  2211. * Data Library:: Methods to manipulate data
  2212. * Data Interfaces::
  2213. * Data Partition::
  2214. * Codelets and Tasks:: Methods to construct tasks
  2215. * Explicit Dependencies:: Explicit Dependencies
  2216. * Implicit Data Dependencies:: Implicit Data Dependencies
  2217. * Performance Model API::
  2218. * Profiling API:: Profiling API
  2219. * CUDA extensions:: CUDA extensions
  2220. * OpenCL extensions:: OpenCL extensions
  2221. * Cell extensions:: Cell extensions
  2222. * Miscellaneous helpers::
  2223. @end menu
  2224. @node Initialization and Termination
  2225. @section Initialization and Termination
  2226. @menu
  2227. * starpu_init:: Initialize StarPU
  2228. * struct starpu_conf:: StarPU runtime configuration
  2229. * starpu_conf_init:: Initialize starpu_conf structure
  2230. * starpu_shutdown:: Terminate StarPU
  2231. @end menu
  2232. @node starpu_init
  2233. @subsection @code{starpu_init} -- Initialize StarPU
  2234. @table @asis
  2235. @item @emph{Description}:
  2236. This is StarPU initialization method, which must be called prior to any other
  2237. StarPU call. It is possible to specify StarPU's configuration (e.g. scheduling
  2238. policy, number of cores, ...) by passing a non-null argument. Default
  2239. configuration is used if the passed argument is @code{NULL}.
  2240. @item @emph{Return value}:
  2241. Upon successful completion, this function returns 0. Otherwise, @code{-ENODEV}
  2242. indicates that no worker was available (so that StarPU was not initialized).
  2243. @item @emph{Prototype}:
  2244. @code{int starpu_init(struct starpu_conf *conf);}
  2245. @end table
  2246. @node struct starpu_conf
  2247. @subsection @code{struct starpu_conf} -- StarPU runtime configuration
  2248. @table @asis
  2249. @item @emph{Description}:
  2250. This structure is passed to the @code{starpu_init} function in order
  2251. to configure StarPU.
  2252. When the default value is used, StarPU automatically selects the number
  2253. of processing units and takes the default scheduling policy. This parameter
  2254. overwrites the equivalent environment variables.
  2255. @item @emph{Fields}:
  2256. @table @asis
  2257. @item @code{sched_policy_name} (default = NULL):
  2258. This is the name of the scheduling policy. This can also be specified with the
  2259. @code{STARPU_SCHED} environment variable.
  2260. @item @code{sched_policy} (default = NULL):
  2261. This is the definition of the scheduling policy. This field is ignored
  2262. if @code{sched_policy_name} is set.
  2263. @item @code{ncpus} (default = -1):
  2264. This is the number of CPU cores that StarPU can use. This can also be
  2265. specified with the @code{STARPU_NCPUS} environment variable.
  2266. @item @code{ncuda} (default = -1):
  2267. This is the number of CUDA devices that StarPU can use. This can also be
  2268. specified with the @code{STARPU_NCUDA} environment variable.
  2269. @item @code{nopencl} (default = -1):
  2270. This is the number of OpenCL devices that StarPU can use. This can also be
  2271. specified with the @code{STARPU_NOPENCL} environment variable.
  2272. @item @code{nspus} (default = -1):
  2273. This is the number of Cell SPUs that StarPU can use. This can also be
  2274. specified with the @code{STARPU_NGORDON} environment variable.
  2275. @item @code{use_explicit_workers_bindid} (default = 0)
  2276. If this flag is set, the @code{workers_bindid} array indicates where the
  2277. different workers are bound, otherwise StarPU automatically selects where to
  2278. bind the different workers unless the @code{STARPU_WORKERS_CPUID} environment
  2279. variable is set. The @code{STARPU_WORKERS_CPUID} environment variable is
  2280. ignored if the @code{use_explicit_workers_bindid} flag is set.
  2281. @item @code{workers_bindid[STARPU_NMAXWORKERS]}
  2282. If the @code{use_explicit_workers_bindid} flag is set, this array indicates
  2283. where to bind the different workers. The i-th entry of the
  2284. @code{workers_bindid} indicates the logical identifier of the processor which
  2285. should execute the i-th worker. Note that the logical ordering of the CPUs is
  2286. either determined by the OS, or provided by the @code{hwloc} library in case it
  2287. is available.
  2288. When this flag is set, the @ref{STARPU_WORKERS_CPUID} environment variable is
  2289. ignored.
  2290. @item @code{use_explicit_workers_cuda_gpuid} (default = 0)
  2291. If this flag is set, the CUDA workers will be attached to the CUDA devices
  2292. specified in the @code{workers_cuda_gpuid} array. Otherwise, StarPU affects the
  2293. CUDA devices in a round-robin fashion.
  2294. When this flag is set, the @ref{STARPU_WORKERS_CUDAID} environment variable is
  2295. ignored.
  2296. @item @code{workers_cuda_gpuid[STARPU_NMAXWORKERS]}
  2297. If the @code{use_explicit_workers_cuda_gpuid} flag is set, this array contains
  2298. the logical identifiers of the CUDA devices (as used by @code{cudaGetDevice}).
  2299. @item @code{use_explicit_workers_opencl_gpuid} (default = 0)
  2300. If this flag is set, the OpenCL workers will be attached to the OpenCL devices
  2301. specified in the @code{workers_opencl_gpuid} array. Otherwise, StarPU affects the
  2302. OpenCL devices in a round-robin fashion.
  2303. @item @code{workers_opencl_gpuid[STARPU_NMAXWORKERS]}:
  2304. @item @code{calibrate} (default = 0):
  2305. If this flag is set, StarPU will calibrate the performance models when
  2306. executing tasks. If this value is equal to -1, the default value is used. The
  2307. default value is overwritten by the @code{STARPU_CALIBRATE} environment
  2308. variable when it is set.
  2309. @end table
  2310. @end table
  2311. @node starpu_conf_init
  2312. @subsection @code{starpu_conf_init} -- Initialize starpu_conf structure
  2313. @table @asis
  2314. This function initializes the @code{starpu_conf} structure passed as argument
  2315. with the default values. In case some configuration parameters are already
  2316. specified through environment variables, @code{starpu_conf_init} initializes
  2317. the fields of the structure according to the environment variables. For
  2318. instance if @code{STARPU_CALIBRATE} is set, its value is put in the
  2319. @code{.ncuda} field of the structure passed as argument.
  2320. @item @emph{Return value}:
  2321. Upon successful completion, this function returns 0. Otherwise, @code{-EINVAL}
  2322. indicates that the argument was NULL.
  2323. @item @emph{Prototype}:
  2324. @code{int starpu_conf_init(struct starpu_conf *conf);}
  2325. @end table
  2326. @node starpu_shutdown
  2327. @subsection @code{starpu_shutdown} -- Terminate StarPU
  2328. @deftypefun void starpu_shutdown (void)
  2329. This is StarPU termination method. It must be called at the end of the
  2330. application: statistics and other post-mortem debugging information are not
  2331. guaranteed to be available until this method has been called.
  2332. @end deftypefun
  2333. @node Workers' Properties
  2334. @section Workers' Properties
  2335. @menu
  2336. * starpu_worker_get_count:: Get the number of processing units
  2337. * starpu_worker_get_count_by_type:: Get the number of processing units of a given type
  2338. * starpu_cpu_worker_get_count:: Get the number of CPU controlled by StarPU
  2339. * starpu_cuda_worker_get_count:: Get the number of CUDA devices controlled by StarPU
  2340. * starpu_opencl_worker_get_count:: Get the number of OpenCL devices controlled by StarPU
  2341. * starpu_spu_worker_get_count:: Get the number of Cell SPUs controlled by StarPU
  2342. * starpu_worker_get_id:: Get the identifier of the current worker
  2343. * starpu_worker_get_ids_by_type:: Get the list of identifiers of workers with a given type
  2344. * starpu_worker_get_devid:: Get the device identifier of a worker
  2345. * starpu_worker_get_type:: Get the type of processing unit associated to a worker
  2346. * starpu_worker_get_name:: Get the name of a worker
  2347. * starpu_worker_get_memory_node:: Get the memory node of a worker
  2348. @end menu
  2349. @node starpu_worker_get_count
  2350. @subsection @code{starpu_worker_get_count} -- Get the number of processing units
  2351. @deftypefun unsigned starpu_worker_get_count (void)
  2352. This function returns the number of workers (i.e. processing units executing
  2353. StarPU tasks). The returned value should be at most @code{STARPU_NMAXWORKERS}.
  2354. @end deftypefun
  2355. @node starpu_worker_get_count_by_type
  2356. @subsection @code{starpu_worker_get_count_by_type} -- Get the number of processing units of a given type
  2357. @deftypefun int starpu_worker_get_count_by_type ({enum starpu_archtype} @var{type})
  2358. Returns the number of workers of the type indicated by the argument. A positive
  2359. (or null) value is returned in case of success, @code{-EINVAL} indicates that
  2360. the type is not valid otherwise.
  2361. @end deftypefun
  2362. @node starpu_cpu_worker_get_count
  2363. @subsection @code{starpu_cpu_worker_get_count} -- Get the number of CPU controlled by StarPU
  2364. @deftypefun unsigned starpu_cpu_worker_get_count (void)
  2365. This function returns the number of CPUs controlled by StarPU. The returned
  2366. value should be at most @code{STARPU_NMAXCPUS}.
  2367. @end deftypefun
  2368. @node starpu_cuda_worker_get_count
  2369. @subsection @code{starpu_cuda_worker_get_count} -- Get the number of CUDA devices controlled by StarPU
  2370. @deftypefun unsigned starpu_cuda_worker_get_count (void)
  2371. This function returns the number of CUDA devices controlled by StarPU. The returned
  2372. value should be at most @code{STARPU_MAXCUDADEVS}.
  2373. @end deftypefun
  2374. @node starpu_opencl_worker_get_count
  2375. @subsection @code{starpu_opencl_worker_get_count} -- Get the number of OpenCL devices controlled by StarPU
  2376. @deftypefun unsigned starpu_opencl_worker_get_count (void)
  2377. This function returns the number of OpenCL devices controlled by StarPU. The returned
  2378. value should be at most @code{STARPU_MAXOPENCLDEVS}.
  2379. @end deftypefun
  2380. @node starpu_spu_worker_get_count
  2381. @subsection @code{starpu_spu_worker_get_count} -- Get the number of Cell SPUs controlled by StarPU
  2382. @deftypefun unsigned starpu_opencl_worker_get_count (void)
  2383. This function returns the number of Cell SPUs controlled by StarPU.
  2384. @end deftypefun
  2385. @node starpu_worker_get_id
  2386. @subsection @code{starpu_worker_get_id} -- Get the identifier of the current worker
  2387. @deftypefun int starpu_worker_get_id (void)
  2388. This function returns the identifier of the worker associated to the calling
  2389. thread. The returned value is either -1 if the current context is not a StarPU
  2390. worker (i.e. when called from the application outside a task or a callback), or
  2391. an integer between 0 and @code{starpu_worker_get_count() - 1}.
  2392. @end deftypefun
  2393. @node starpu_worker_get_ids_by_type
  2394. @subsection @code{starpu_worker_get_ids_by_type} -- Get the list of identifiers of workers with a given type
  2395. @deftypefun int starpu_worker_get_ids_by_type ({enum starpu_archtype} @var{type}, int *@var{workerids}, int @var{maxsize})
  2396. Fill the workerids array with the identifiers of the workers that have the type
  2397. indicated in the first argument. The maxsize argument indicates the size of the
  2398. workids array. The returned value gives the number of identifiers that were put
  2399. in the array. @code{-ERANGE} is returned is maxsize is lower than the number of
  2400. workers with the appropriate type: in that case, the array is filled with the
  2401. maxsize first elements. To avoid such overflows, the value of maxsize can be
  2402. chosen by the means of the @code{starpu_worker_get_count_by_type} function, or
  2403. by passing a value greater or equal to @code{STARPU_NMAXWORKERS}.
  2404. @end deftypefun
  2405. @node starpu_worker_get_devid
  2406. @subsection @code{starpu_worker_get_devid} -- Get the device identifier of a worker
  2407. @deftypefun int starpu_worker_get_devid (int @var{id})
  2408. This functions returns the device id of the worker associated to an identifier
  2409. (as returned by the @code{starpu_worker_get_id} function). In the case of a
  2410. CUDA worker, this device identifier is the logical device identifier exposed by
  2411. CUDA (used by the @code{cudaGetDevice} function for instance). The device
  2412. identifier of a CPU worker is the logical identifier of the core on which the
  2413. worker was bound; this identifier is either provided by the OS or by the
  2414. @code{hwloc} library in case it is available.
  2415. @end deftypefun
  2416. @node starpu_worker_get_type
  2417. @subsection @code{starpu_worker_get_type} -- Get the type of processing unit associated to a worker
  2418. @deftypefun {enum starpu_archtype} starpu_worker_get_type (int @var{id})
  2419. This function returns the type of worker associated to an identifier (as
  2420. returned by the @code{starpu_worker_get_id} function). The returned value
  2421. indicates the architecture of the worker: @code{STARPU_CPU_WORKER} for a CPU
  2422. core, @code{STARPU_CUDA_WORKER} for a CUDA device,
  2423. @code{STARPU_OPENCL_WORKER} for a OpenCL device, and
  2424. @code{STARPU_GORDON_WORKER} for a Cell SPU. The value returned for an invalid
  2425. identifier is unspecified.
  2426. @end deftypefun
  2427. @node starpu_worker_get_name
  2428. @subsection @code{starpu_worker_get_name} -- Get the name of a worker
  2429. @deftypefun void starpu_worker_get_name (int @var{id}, char *@var{dst}, size_t @var{maxlen})
  2430. StarPU associates a unique human readable string to each processing unit. This
  2431. function copies at most the @code{maxlen} first bytes of the unique string
  2432. associated to a worker identified by its identifier @code{id} into the
  2433. @code{dst} buffer. The caller is responsible for ensuring that the @code{dst}
  2434. is a valid pointer to a buffer of @code{maxlen} bytes at least. Calling this
  2435. function on an invalid identifier results in an unspecified behaviour.
  2436. @end deftypefun
  2437. @node starpu_worker_get_memory_node
  2438. @subsection @code{starpu_worker_get_memory_node} -- Get the memory node of a worker
  2439. @deftypefun unsigned starpu_worker_get_memory_node (unsigned @var{workerid})
  2440. This function returns the identifier of the memory node associated to the
  2441. worker identified by @code{workerid}.
  2442. @end deftypefun
  2443. @node Data Library
  2444. @section Data Library
  2445. This section describes the data management facilities provided by StarPU.
  2446. We show how to use existing data interfaces in @ref{Data Interfaces}, but developers can
  2447. design their own data interfaces if required.
  2448. @menu
  2449. * starpu_malloc:: Allocate data and pin it
  2450. * starpu_access_mode:: Data access mode
  2451. * unsigned memory_node:: Memory node
  2452. * starpu_data_handle:: StarPU opaque data handle
  2453. * void *interface:: StarPU data interface
  2454. * starpu_data_register:: Register a piece of data to StarPU
  2455. * starpu_data_unregister:: Unregister a piece of data from StarPU
  2456. * starpu_data_invalidate:: Invalidate all data replicates
  2457. * starpu_data_acquire:: Access registered data from the application
  2458. * starpu_data_acquire_cb:: Access registered data from the application asynchronously
  2459. * starpu_data_release:: Release registered data from the application
  2460. * starpu_data_set_wt_mask:: Set the Write-Through mask
  2461. * starpu_data_prefetch_on_node:: Prefetch data to a given node
  2462. @end menu
  2463. @node starpu_malloc
  2464. @subsection @code{starpu_malloc} -- Allocate data and pin it
  2465. @deftypefun int starpu_malloc (void **@var{A}, size_t @var{dim})
  2466. This function allocates data of the given size. It will also try to pin it in
  2467. CUDA or OpenGL, so that data transfers from this buffer can be asynchronous, and
  2468. thus permit data transfer and computation overlapping. The allocated buffer must
  2469. be freed thanks to the @code{starpu_free} function.
  2470. @end deftypefun
  2471. @node starpu_access_mode
  2472. @subsection @code{starpu_access_mode} -- Data access mode
  2473. This datatype describes a data access mode. The different available modes are:
  2474. @table @asis
  2475. @table @asis
  2476. @item @code{STARPU_R} read-only mode.
  2477. @item @code{STARPU_W} write-only mode.
  2478. @item @code{STARPU_RW} read-write mode. This is equivalent to @code{STARPU_R|STARPU_W}.
  2479. @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.
  2480. @item @code{STARPU_REDUX} reduction mode. TODO: document, as well as @code{starpu_data_set_reduction_methods}
  2481. @end table
  2482. @end table
  2483. @node unsigned memory_node
  2484. @subsection @code{unsigned memory_node} -- Memory node
  2485. @table @asis
  2486. @item @emph{Description}:
  2487. Every worker is associated to a memory node which is a logical abstraction of
  2488. the address space from which the processing unit gets its data. For instance,
  2489. the memory node associated to the different CPU workers represents main memory
  2490. (RAM), the memory node associated to a GPU is DRAM embedded on the device.
  2491. Every memory node is identified by a logical index which is accessible from the
  2492. @code{starpu_worker_get_memory_node} function. When registering a piece of data
  2493. to StarPU, the specified memory node indicates where the piece of data
  2494. initially resides (we also call this memory node the home node of a piece of
  2495. data).
  2496. @end table
  2497. @node starpu_data_handle
  2498. @subsection @code{starpu_data_handle} -- StarPU opaque data handle
  2499. @table @asis
  2500. @item @emph{Description}:
  2501. StarPU uses @code{starpu_data_handle} as an opaque handle to manage a piece of
  2502. data. Once a piece of data has been registered to StarPU, it is associated to a
  2503. @code{starpu_data_handle} which keeps track of the state of the piece of data
  2504. over the entire machine, so that we can maintain data consistency and locate
  2505. data replicates for instance.
  2506. @end table
  2507. @node void *interface
  2508. @subsection @code{void *interface} -- StarPU data interface
  2509. @table @asis
  2510. @item @emph{Description}:
  2511. Data management is done at a high-level in StarPU: rather than accessing a mere
  2512. list of contiguous buffers, the tasks may manipulate data that are described by
  2513. a high-level construct which we call data interface.
  2514. An example of data interface is the "vector" interface which describes a
  2515. contiguous data array on a spefic memory node. This interface is a simple
  2516. structure containing the number of elements in the array, the size of the
  2517. elements, and the address of the array in the appropriate address space (this
  2518. address may be invalid if there is no valid copy of the array in the memory
  2519. node). More informations on the data interfaces provided by StarPU are
  2520. given in @ref{Data Interfaces}.
  2521. When a piece of data managed by StarPU is used by a task, the task
  2522. implementation is given a pointer to an interface describing a valid copy of
  2523. the data that is accessible from the current processing unit.
  2524. @end table
  2525. @node starpu_data_register
  2526. @subsection @code{starpu_data_register} -- Register a piece of data to StarPU
  2527. @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})
  2528. Register a piece of data into the handle located at the @code{handleptr}
  2529. address. The @code{interface} buffer contains the initial description of the
  2530. data in the home node. The @code{ops} argument is a pointer to a structure
  2531. describing the different methods used to manipulate this type of interface. See
  2532. @ref{struct starpu_data_interface_ops_t} for more details on this structure.
  2533. If @code{home_node} is -1, StarPU will automatically
  2534. allocate the memory when it is used for the
  2535. first time in write-only mode. Once such data handle has been automatically
  2536. allocated, it is possible to access it using any access mode.
  2537. Note that StarPU supplies a set of predefined types of interface (e.g. vector or
  2538. matrix) which can be registered by the means of helper functions (e.g.
  2539. @code{starpu_vector_data_register} or @code{starpu_matrix_data_register}).
  2540. @end deftypefun
  2541. @node starpu_data_unregister
  2542. @subsection @code{starpu_data_unregister} -- Unregister a piece of data from StarPU
  2543. @deftypefun void starpu_data_unregister (starpu_data_handle @var{handle})
  2544. This function unregisters a data handle from StarPU. If the data was
  2545. automatically allocated by StarPU because the home node was -1, all
  2546. automatically allocated buffers are freed. Otherwise, a valid copy of the data
  2547. is put back into the home node in the buffer that was initially registered.
  2548. Using a data handle that has been unregistered from StarPU results in an
  2549. undefined behaviour.
  2550. @end deftypefun
  2551. @node starpu_data_invalidate
  2552. @subsection @code{starpu_data_invalidate} -- Invalidate all data replicates
  2553. @deftypefun void starpu_data_invalidate (starpu_data_handle @var{handle})
  2554. Destroy all replicates of the data handle. After data invalidation, the first
  2555. access to the handle must be performed in write-only mode. Accessing an
  2556. invalidated data in read-mode results in undefined behaviour.
  2557. @end deftypefun
  2558. @c TODO create a specific sections about user interaction with the DSM ?
  2559. @node starpu_data_acquire
  2560. @subsection @code{starpu_data_acquire} -- Access registered data from the application
  2561. @deftypefun int starpu_data_acquire (starpu_data_handle @var{handle}, starpu_access_mode @var{mode})
  2562. The application must call this function prior to accessing registered data from
  2563. main memory outside tasks. StarPU ensures that the application will get an
  2564. up-to-date copy of the data in main memory located where the data was
  2565. originally registered, and that all concurrent accesses (e.g. from tasks) will
  2566. be consistent with the access mode specified in the @code{mode} argument.
  2567. @code{starpu_data_release} must be called once the application does not need to
  2568. access the piece of data anymore. Note that implicit data
  2569. dependencies are also enforced by @code{starpu_data_acquire}, i.e.
  2570. @code{starpu_data_acquire} will wait for all tasks scheduled to work on
  2571. the data, unless that they have not been disabled explictly by calling
  2572. @code{starpu_data_set_default_sequential_consistency_flag} or
  2573. @code{starpu_data_set_sequential_consistency_flag}.
  2574. @code{starpu_data_acquire} is a blocking call, so that it cannot be called from
  2575. tasks or from their callbacks (in that case, @code{starpu_data_acquire} returns
  2576. @code{-EDEADLK}). Upon successful completion, this function returns 0.
  2577. @end deftypefun
  2578. @node starpu_data_acquire_cb
  2579. @subsection @code{starpu_data_acquire_cb} -- Access registered data from the application asynchronously
  2580. @deftypefun int starpu_data_acquire_cb (starpu_data_handle @var{handle}, starpu_access_mode @var{mode}, void (*@var{callback})(void *), void *@var{arg})
  2581. @code{starpu_data_acquire_cb} is the asynchronous equivalent of
  2582. @code{starpu_data_release}. When the data specified in the first argument is
  2583. available in the appropriate access mode, the callback function is executed.
  2584. The application may access the requested data during the execution of this
  2585. callback. The callback function must call @code{starpu_data_release} once the
  2586. application does not need to access the piece of data anymore.
  2587. Note that implicit data dependencies are also enforced by
  2588. @code{starpu_data_acquire_cb} in case they are enabled.
  2589. Contrary to @code{starpu_data_acquire}, this function is non-blocking and may
  2590. be called from task callbacks. Upon successful completion, this function
  2591. returns 0.
  2592. @end deftypefun
  2593. @node starpu_data_release
  2594. @subsection @code{starpu_data_release} -- Release registered data from the application
  2595. @deftypefun void starpu_data_release (starpu_data_handle @var{handle})
  2596. This function releases the piece of data acquired by the application either by
  2597. @code{starpu_data_acquire} or by @code{starpu_data_acquire_cb}.
  2598. @end deftypefun
  2599. @node starpu_data_set_wt_mask
  2600. @subsection @code{starpu_data_set_wt_mask} -- Set the Write-Through mask
  2601. @deftypefun void starpu_data_set_wt_mask (starpu_data_handle @var{handle}, uint32_t @var{wt_mask})
  2602. This function sets the write-through mask of a given data, i.e. a bitmask of
  2603. nodes where the data should be always replicated after modification.
  2604. @end deftypefun
  2605. @node starpu_data_prefetch_on_node
  2606. @subsection @code{starpu_data_prefetch_on_node} -- Prefetch data to a given node
  2607. @deftypefun int starpu_data_prefetch_on_node (starpu_data_handle @var{handle}, unsigned @var{node}, unsigned @var{async})
  2608. Issue a prefetch request for a given data to a given node, i.e.
  2609. requests that the data be replicated to the given node, so that it is available
  2610. there for tasks. If the @code{async} parameter is 0, the call will block until
  2611. the transfer is achieved, else the call will return as soon as the request is
  2612. scheduled (which may however have to wait for a task completion).
  2613. @end deftypefun
  2614. @node Data Interfaces
  2615. @section Data Interfaces
  2616. @menu
  2617. * Variable Interface::
  2618. * Vector Interface::
  2619. * Matrix Interface::
  2620. * 3D Matrix Interface::
  2621. * BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)::
  2622. * CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)::
  2623. @end menu
  2624. @node Variable Interface
  2625. @subsection Variable Interface
  2626. @table @asis
  2627. @item @emph{Description}:
  2628. This variant of @code{starpu_data_register} uses the variable interface,
  2629. i.e. for a mere single variable. @code{ptr} is the address of the variable,
  2630. and @code{elemsize} is the size of the variable.
  2631. @item @emph{Prototype}:
  2632. @code{void starpu_variable_data_register(starpu_data_handle *handle,
  2633. uint32_t home_node,
  2634. uintptr_t ptr, size_t elemsize);}
  2635. @item @emph{Example}:
  2636. @cartouche
  2637. @smallexample
  2638. float var;
  2639. starpu_data_handle var_handle;
  2640. starpu_variable_data_register(&var_handle, 0, (uintptr_t)&var, sizeof(var));
  2641. @end smallexample
  2642. @end cartouche
  2643. @end table
  2644. @node Vector Interface
  2645. @subsection Vector Interface
  2646. @table @asis
  2647. @item @emph{Description}:
  2648. This variant of @code{starpu_data_register} uses the vector interface,
  2649. i.e. for mere arrays of elements. @code{ptr} is the address of the first
  2650. element in the home node. @code{nx} is the number of elements in the vector.
  2651. @code{elemsize} is the size of each element.
  2652. @item @emph{Prototype}:
  2653. @code{void starpu_vector_data_register(starpu_data_handle *handle, uint32_t home_node,
  2654. uintptr_t ptr, uint32_t nx, size_t elemsize);}
  2655. @item @emph{Example}:
  2656. @cartouche
  2657. @smallexample
  2658. float vector[NX];
  2659. starpu_data_handle vector_handle;
  2660. starpu_vector_data_register(&vector_handle, 0, (uintptr_t)vector, NX,
  2661. sizeof(vector[0]));
  2662. @end smallexample
  2663. @end cartouche
  2664. @end table
  2665. @node Matrix Interface
  2666. @subsection Matrix Interface
  2667. @table @asis
  2668. @item @emph{Description}:
  2669. This variant of @code{starpu_data_register} uses the matrix interface, i.e. for
  2670. matrices of elements. @code{ptr} is the address of the first element in the home
  2671. node. @code{ld} is the number of elements between rows. @code{nx} is the number
  2672. of elements in a row (this can be different from @code{ld} if there are extra
  2673. elements for alignment for instance). @code{ny} is the number of rows.
  2674. @code{elemsize} is the size of each element.
  2675. @item @emph{Prototype}:
  2676. @code{void starpu_matrix_data_register(starpu_data_handle *handle, uint32_t home_node,
  2677. uintptr_t ptr, uint32_t ld, uint32_t nx,
  2678. uint32_t ny, size_t elemsize);}
  2679. @item @emph{Example}:
  2680. @cartouche
  2681. @smallexample
  2682. float *matrix;
  2683. starpu_data_handle matrix_handle;
  2684. matrix = (float*)malloc(width * height * sizeof(float));
  2685. starpu_matrix_data_register(&matrix_handle, 0, (uintptr_t)matrix,
  2686. width, width, height, sizeof(float));
  2687. @end smallexample
  2688. @end cartouche
  2689. @end table
  2690. @node 3D Matrix Interface
  2691. @subsection 3D Matrix Interface
  2692. @table @asis
  2693. @item @emph{Description}:
  2694. This variant of @code{starpu_data_register} uses the 3D matrix interface.
  2695. @code{ptr} is the address of the array of first element in the home node.
  2696. @code{ldy} is the number of elements between rows. @code{ldz} is the number
  2697. of rows between z planes. @code{nx} is the number of elements in a row (this
  2698. can be different from @code{ldy} if there are extra elements for alignment
  2699. for instance). @code{ny} is the number of rows in a z plane (likewise with
  2700. @code{ldz}). @code{nz} is the number of z planes. @code{elemsize} is the size of
  2701. each element.
  2702. @item @emph{Prototype}:
  2703. @code{void starpu_block_data_register(starpu_data_handle *handle, uint32_t home_node,
  2704. uintptr_t ptr, uint32_t ldy, uint32_t ldz, uint32_t nx,
  2705. uint32_t ny, uint32_t nz, size_t elemsize);}
  2706. @item @emph{Example}:
  2707. @cartouche
  2708. @smallexample
  2709. float *block;
  2710. starpu_data_handle block_handle;
  2711. block = (float*)malloc(nx*ny*nz*sizeof(float));
  2712. starpu_block_data_register(&block_handle, 0, (uintptr_t)block,
  2713. nx, nx*ny, nx, ny, nz, sizeof(float));
  2714. @end smallexample
  2715. @end cartouche
  2716. @end table
  2717. @node BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)
  2718. @subsection BCSR Interface for Sparse Matrices (Blocked Compressed Sparse Row Representation)
  2719. @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})
  2720. This variant of @code{starpu_data_register} uses the BCSR sparse matrix interface.
  2721. TODO
  2722. @end deftypefun
  2723. @node CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)
  2724. @subsection CSR Interface for Sparse Matrices (Compressed Sparse Row Representation)
  2725. @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})
  2726. This variant of @code{starpu_data_register} uses the CSR sparse matrix interface.
  2727. TODO
  2728. @end deftypefun
  2729. @node Data Partition
  2730. @section Data Partition
  2731. @menu
  2732. * struct starpu_data_filter:: StarPU filter structure
  2733. * starpu_data_partition:: Partition Data
  2734. * starpu_data_unpartition:: Unpartition Data
  2735. * starpu_data_get_nb_children::
  2736. * starpu_data_get_sub_data::
  2737. * Predefined filter functions::
  2738. @end menu
  2739. @node struct starpu_data_filter
  2740. @subsection @code{struct starpu_data_filter} -- StarPU filter structure
  2741. @table @asis
  2742. @item @emph{Description}:
  2743. The filter structure describes a data partitioning operation, to be given to the
  2744. @code{starpu_data_partition} function, see @ref{starpu_data_partition} for an example.
  2745. @item @emph{Fields}:
  2746. @table @asis
  2747. @item @code{filter_func}:
  2748. This function fills the @code{child_interface} structure with interface
  2749. information for the @code{id}-th child of the parent @code{father_interface} (among @code{nparts}).
  2750. @code{void (*filter_func)(void *father_interface, void* child_interface, struct starpu_data_filter *, unsigned id, unsigned nparts);}
  2751. @item @code{nchildren}:
  2752. This is the number of parts to partition the data into.
  2753. @item @code{get_nchildren}:
  2754. This returns the number of children. This can be used instead of @code{nchildren} when the number of
  2755. children depends on the actual data (e.g. the number of blocks in a sparse
  2756. matrix).
  2757. @code{unsigned (*get_nchildren)(struct starpu_data_filter *, starpu_data_handle initial_handle);}
  2758. @item @code{get_child_ops}:
  2759. In case the resulting children use a different data interface, this function
  2760. returns which interface is used by child number @code{id}.
  2761. @code{struct starpu_data_interface_ops_t *(*get_child_ops)(struct starpu_data_filter *, unsigned id);}
  2762. @item @code{filter_arg}:
  2763. Some filters take an addition parameter, but this is usually unused.
  2764. @item @code{filter_arg_ptr}:
  2765. Some filters take an additional array parameter like the sizes of the parts, but
  2766. this is usually unused.
  2767. @end table
  2768. @end table
  2769. @node starpu_data_partition
  2770. @subsection starpu_data_partition -- Partition Data
  2771. @table @asis
  2772. @item @emph{Description}:
  2773. This requests partitioning one StarPU data @code{initial_handle} into several
  2774. subdata according to the filter @code{f}
  2775. @item @emph{Prototype}:
  2776. @code{void starpu_data_partition(starpu_data_handle initial_handle, struct starpu_data_filter *f);}
  2777. @item @emph{Example}:
  2778. @cartouche
  2779. @smallexample
  2780. struct starpu_data_filter f = @{
  2781. .filter_func = starpu_vertical_block_filter_func,
  2782. .nchildren = nslicesx,
  2783. .get_nchildren = NULL,
  2784. .get_child_ops = NULL
  2785. @};
  2786. starpu_data_partition(A_handle, &f);
  2787. @end smallexample
  2788. @end cartouche
  2789. @end table
  2790. @node starpu_data_unpartition
  2791. @subsection starpu_data_unpartition -- Unpartition data
  2792. @table @asis
  2793. @item @emph{Description}:
  2794. This unapplies one filter, thus unpartitioning the data. The pieces of data are
  2795. collected back into one big piece in the @code{gathering_node} (usually 0).
  2796. @item @emph{Prototype}:
  2797. @code{void starpu_data_unpartition(starpu_data_handle root_data, uint32_t gathering_node);}
  2798. @item @emph{Example}:
  2799. @cartouche
  2800. @smallexample
  2801. starpu_data_unpartition(A_handle, 0);
  2802. @end smallexample
  2803. @end cartouche
  2804. @end table
  2805. @node starpu_data_get_nb_children
  2806. @subsection starpu_data_get_nb_children
  2807. @table @asis
  2808. @item @emph{Description}:
  2809. This function returns the number of children.
  2810. @item @emph{Return value}:
  2811. The number of children.
  2812. @item @emph{Prototype}:
  2813. @code{int starpu_data_get_nb_children(starpu_data_handle handle);}
  2814. @end table
  2815. @c starpu_data_handle starpu_data_get_child(starpu_data_handle handle, unsigned i);
  2816. @node starpu_data_get_sub_data
  2817. @subsection starpu_data_get_sub_data
  2818. @table @asis
  2819. @item @emph{Description}:
  2820. After partitioning a StarPU data by applying a filter,
  2821. @code{starpu_data_get_sub_data} can be used to get handles for each of the data
  2822. portions. @code{root_data} is the parent data that was partitioned. @code{depth}
  2823. is the number of filters to traverse (in case several filters have been applied,
  2824. to e.g. partition in row blocks, and then in column blocks), and the subsequent
  2825. parameters are the indexes.
  2826. @item @emph{Return value}:
  2827. A handle to the subdata.
  2828. @item @emph{Prototype}:
  2829. @code{starpu_data_handle starpu_data_get_sub_data(starpu_data_handle root_data, unsigned depth, ... );}
  2830. @item @emph{Example}:
  2831. @cartouche
  2832. @smallexample
  2833. h = starpu_data_get_sub_data(A_handle, 1, taskx);
  2834. @end smallexample
  2835. @end cartouche
  2836. @end table
  2837. @node Predefined filter functions
  2838. @subsection Predefined filter functions
  2839. @menu
  2840. * Partitioning BCSR Data::
  2841. * Partitioning BLAS interface::
  2842. * Partitioning Vector Data::
  2843. * Partitioning Block Data::
  2844. @end menu
  2845. This section gives a partial list of the predefined partitioning functions.
  2846. Examples on how to use them are shown in @ref{Partitioning Data}. The complete
  2847. list can be found in @code{starpu_data_filters.h} .
  2848. @node Partitioning BCSR Data
  2849. @subsubsection Partitioning BCSR Data
  2850. @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})
  2851. TODO
  2852. @end deftypefun
  2853. @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})
  2854. TODO
  2855. @end deftypefun
  2856. @node Partitioning BLAS interface
  2857. @subsubsection Partitioning BLAS interface
  2858. @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})
  2859. This partitions a dense Matrix into horizontal blocks.
  2860. @end deftypefun
  2861. @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})
  2862. This partitions a dense Matrix into vertical blocks.
  2863. @end deftypefun
  2864. @node Partitioning Vector Data
  2865. @subsubsection Partitioning Vector Data
  2866. @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})
  2867. This partitions a vector into blocks of the same size.
  2868. @end deftypefun
  2869. @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})
  2870. This partitions a vector into blocks of sizes given in @code{filter_arg_ptr}.
  2871. @end deftypefun
  2872. @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})
  2873. This partitions a vector into two blocks, the first block size being given in @code{filter_arg}.
  2874. @end deftypefun
  2875. @node Partitioning Block Data
  2876. @subsubsection Partitioning Block Data
  2877. @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})
  2878. This partitions a 3D matrix along the X axis.
  2879. @end deftypefun
  2880. @node Codelets and Tasks
  2881. @section Codelets and Tasks
  2882. This section describes the interface to manipulate codelets and tasks.
  2883. @deftp {Data Type} {struct starpu_codelet}
  2884. The codelet structure describes a kernel that is possibly implemented on various
  2885. targets. For compatibility, make sure to initialize the whole structure to zero.
  2886. @table @asis
  2887. @item @code{where}
  2888. Indicates which types of processing units are able to execute the codelet.
  2889. @code{STARPU_CPU|STARPU_CUDA} for instance indicates that the codelet is
  2890. implemented for both CPU cores and CUDA devices while @code{STARPU_GORDON}
  2891. indicates that it is only available on Cell SPUs.
  2892. @item @code{cpu_func} (optional)
  2893. Is a function pointer to the CPU implementation of the codelet. Its prototype
  2894. must be: @code{void cpu_func(void *buffers[], void *cl_arg)}. The first
  2895. argument being the array of data managed by the data management library, and
  2896. the second argument is a pointer to the argument passed from the @code{cl_arg}
  2897. field of the @code{starpu_task} structure.
  2898. The @code{cpu_func} field is ignored if @code{STARPU_CPU} does not appear in
  2899. the @code{where} field, it must be non-null otherwise.
  2900. @item @code{cuda_func} (optional)
  2901. Is a function pointer to the CUDA implementation of the codelet. @emph{This
  2902. must be a host-function written in the CUDA runtime API}. Its prototype must
  2903. be: @code{void cuda_func(void *buffers[], void *cl_arg);}. The @code{cuda_func}
  2904. field is ignored if @code{STARPU_CUDA} does not appear in the @code{where}
  2905. field, it must be non-null otherwise.
  2906. @item @code{opencl_func} (optional)
  2907. Is a function pointer to the OpenCL implementation of the codelet. Its
  2908. prototype must be:
  2909. @code{void opencl_func(starpu_data_interface_t *descr, void *arg);}.
  2910. This pointer is ignored if @code{STARPU_OPENCL} does not appear in the
  2911. @code{where} field, it must be non-null otherwise.
  2912. @item @code{gordon_func} (optional)
  2913. This is the index of the Cell SPU implementation within the Gordon library.
  2914. See Gordon documentation for more details on how to register a kernel and
  2915. retrieve its index.
  2916. @item @code{nbuffers}
  2917. Specifies the number of arguments taken by the codelet. These arguments are
  2918. managed by the DSM and are accessed from the @code{void *buffers[]}
  2919. array. The constant argument passed with the @code{cl_arg} field of the
  2920. @code{starpu_task} structure is not counted in this number. This value should
  2921. not be above @code{STARPU_NMAXBUFS}.
  2922. @item @code{model} (optional)
  2923. This is a pointer to the task duration performance model associated to this
  2924. codelet. This optional field is ignored when set to @code{NULL}.
  2925. TODO
  2926. @item @code{power_model} (optional)
  2927. This is a pointer to the task power consumption performance model associated
  2928. to this codelet. This optional field is ignored when set to @code{NULL}.
  2929. In the case of parallel codelets, this has to account for all processing units
  2930. involved in the parallel execution.
  2931. TODO
  2932. @end table
  2933. @end deftp
  2934. @deftp {Data Type} {struct starpu_task}
  2935. The @code{starpu_task} structure describes a task that can be offloaded on the various
  2936. processing units managed by StarPU. It instantiates a codelet. It can either be
  2937. allocated dynamically with the @code{starpu_task_create} method, or declared
  2938. statically. In the latter case, the programmer has to zero the
  2939. @code{starpu_task} structure and to fill the different fields properly. The
  2940. indicated default values correspond to the configuration of a task allocated
  2941. with @code{starpu_task_create}.
  2942. @table @asis
  2943. @item @code{cl}
  2944. Is a pointer to the corresponding @code{starpu_codelet} data structure. This
  2945. describes where the kernel should be executed, and supplies the appropriate
  2946. implementations. When set to @code{NULL}, no code is executed during the tasks,
  2947. such empty tasks can be useful for synchronization purposes.
  2948. @item @code{buffers}
  2949. Is an array of @code{starpu_buffer_descr_t} structures. It describes the
  2950. different pieces of data accessed by the task, and how they should be accessed.
  2951. The @code{starpu_buffer_descr_t} structure is composed of two fields, the
  2952. @code{handle} field specifies the handle of the piece of data, and the
  2953. @code{mode} field is the required access mode (eg @code{STARPU_RW}). The number
  2954. of entries in this array must be specified in the @code{nbuffers} field of the
  2955. @code{starpu_codelet} structure, and should not excede @code{STARPU_NMAXBUFS}.
  2956. If unsufficient, this value can be set with the @code{--enable-maxbuffers}
  2957. option when configuring StarPU.
  2958. @item @code{cl_arg} (optional; default: @code{NULL})
  2959. This pointer is passed to the codelet through the second argument
  2960. of the codelet implementation (e.g. @code{cpu_func} or @code{cuda_func}).
  2961. In the specific case of the Cell processor, see the @code{cl_arg_size}
  2962. argument.
  2963. @item @code{cl_arg_size} (optional, Cell-specific)
  2964. In the case of the Cell processor, the @code{cl_arg} pointer is not directly
  2965. given to the SPU function. A buffer of size @code{cl_arg_size} is allocated on
  2966. the SPU. This buffer is then filled with the @code{cl_arg_size} bytes starting
  2967. at address @code{cl_arg}. In this case, the argument given to the SPU codelet
  2968. is therefore not the @code{cl_arg} pointer, but the address of the buffer in
  2969. local store (LS) instead. This field is ignored for CPU, CUDA and OpenCL
  2970. codelets, where the @code{cl_arg} pointer is given as such.
  2971. @item @code{callback_func} (optional) (default: @code{NULL})
  2972. This is a function pointer of prototype @code{void (*f)(void *)} which
  2973. specifies a possible callback. If this pointer is non-null, the callback
  2974. function is executed @emph{on the host} after the execution of the task. The
  2975. callback is passed the value contained in the @code{callback_arg} field. No
  2976. callback is executed if the field is set to @code{NULL}.
  2977. @item @code{callback_arg} (optional) (default: @code{NULL})
  2978. This is the pointer passed to the callback function. This field is ignored if
  2979. the @code{callback_func} is set to @code{NULL}.
  2980. @item @code{use_tag} (optional) (default: @code{0})
  2981. If set, this flag indicates that the task should be associated with the tag
  2982. contained in the @code{tag_id} field. Tag allow the application to synchronize
  2983. with the task and to express task dependencies easily.
  2984. @item @code{tag_id}
  2985. This fields contains the tag associated to the task if the @code{use_tag} field
  2986. was set, it is ignored otherwise.
  2987. @item @code{synchronous}
  2988. If this flag is set, the @code{starpu_task_submit} function is blocking and
  2989. returns only when the task has been executed (or if no worker is able to
  2990. process the task). Otherwise, @code{starpu_task_submit} returns immediately.
  2991. @item @code{priority} (optional) (default: @code{STARPU_DEFAULT_PRIO})
  2992. This field indicates a level of priority for the task. This is an integer value
  2993. that must be set between the return values of the
  2994. @code{starpu_sched_get_min_priority} function for the least important tasks,
  2995. and that of the @code{starpu_sched_get_max_priority} for the most important
  2996. tasks (included). The @code{STARPU_MIN_PRIO} and @code{STARPU_MAX_PRIO} macros
  2997. are provided for convenience and respectively returns value of
  2998. @code{starpu_sched_get_min_priority} and @code{starpu_sched_get_max_priority}.
  2999. Default priority is @code{STARPU_DEFAULT_PRIO}, which is always defined as 0 in
  3000. order to allow static task initialization. Scheduling strategies that take
  3001. priorities into account can use this parameter to take better scheduling
  3002. decisions, but the scheduling policy may also ignore it.
  3003. @item @code{execute_on_a_specific_worker} (default: @code{0})
  3004. If this flag is set, StarPU will bypass the scheduler and directly affect this
  3005. task to the worker specified by the @code{workerid} field.
  3006. @item @code{workerid} (optional)
  3007. If the @code{execute_on_a_specific_worker} field is set, this field indicates
  3008. which is the identifier of the worker that should process this task (as
  3009. returned by @code{starpu_worker_get_id}). This field is ignored if
  3010. @code{execute_on_a_specific_worker} field is set to 0.
  3011. @item @code{detach} (optional) (default: @code{1})
  3012. If this flag is set, it is not possible to synchronize with the task
  3013. by the means of @code{starpu_task_wait} later on. Internal data structures
  3014. are only guaranteed to be freed once @code{starpu_task_wait} is called if the
  3015. flag is not set.
  3016. @item @code{destroy} (optional) (default: @code{1})
  3017. If this flag is set, the task structure will automatically be freed, either
  3018. after the execution of the callback if the task is detached, or during
  3019. @code{starpu_task_wait} otherwise. If this flag is not set, dynamically
  3020. allocated data structures will not be freed until @code{starpu_task_destroy} is
  3021. called explicitly. Setting this flag for a statically allocated task structure
  3022. will result in undefined behaviour.
  3023. @item @code{predicted} (output field)
  3024. Predicted duration of the task. This field is only set if the scheduling
  3025. strategy used performance models.
  3026. @end table
  3027. @end deftp
  3028. @deftypefun void starpu_task_init ({struct starpu_task} *@var{task})
  3029. Initialize @var{task} with default values. This function is implicitly
  3030. called by @code{starpu_task_create}. By default, tasks initialized with
  3031. @code{starpu_task_init} must be deinitialized explicitly with
  3032. @code{starpu_task_deinit}. Tasks can also be initialized statically, using the
  3033. constant @code{STARPU_TASK_INITIALIZER}.
  3034. @end deftypefun
  3035. @deftypefun {struct starpu_task *} starpu_task_create (void)
  3036. Allocate a task structure and initialize it with default values. Tasks
  3037. allocated dynamically with @code{starpu_task_create} are automatically freed when the
  3038. task is terminated. If the destroy flag is explicitly unset, the resources used
  3039. by the task are freed by calling
  3040. @code{starpu_task_destroy}.
  3041. @end deftypefun
  3042. @deftypefun void starpu_task_deinit ({struct starpu_task} *@var{task})
  3043. Release all the structures automatically allocated to execute @var{task}. This is
  3044. called automatically by @code{starpu_task_destroy}, but the task structure itself is not
  3045. freed. This should be used for statically allocated tasks for instance.
  3046. @end deftypefun
  3047. @deftypefun void starpu_task_destroy ({struct starpu_task} *@var{task})
  3048. Free the resource allocated during @code{starpu_task_create} and
  3049. associated with @var{task}. This function can be called automatically
  3050. after the execution of a task by setting the @code{destroy} flag of the
  3051. @code{starpu_task} structure (default behaviour). Calling this function
  3052. on a statically allocated task results in an undefined behaviour.
  3053. @end deftypefun
  3054. @deftypefun int starpu_task_wait ({struct starpu_task} *@var{task})
  3055. This function blocks until @var{task} has been executed. It is not possible to
  3056. synchronize with a task more than once. It is not possible to wait for
  3057. synchronous or detached tasks.
  3058. Upon successful completion, this function returns 0. Otherwise, @code{-EINVAL}
  3059. indicates that the specified task was either synchronous or detached.
  3060. @end deftypefun
  3061. @deftypefun int starpu_task_submit ({struct starpu_task} *@var{task})
  3062. This function submits @var{task} to StarPU. Calling this function does
  3063. not mean that the task will be executed immediately as there can be data or task
  3064. (tag) dependencies that are not fulfilled yet: StarPU will take care of
  3065. scheduling this task with respect to such dependencies.
  3066. This function returns immediately if the @code{synchronous} field of the
  3067. @code{starpu_task} structure was set to 0, and block until the termination of
  3068. the task otherwise. It is also possible to synchronize the application with
  3069. asynchronous tasks by the means of tags, using the @code{starpu_tag_wait}
  3070. function for instance.
  3071. In case of success, this function returns 0, a return value of @code{-ENODEV}
  3072. means that there is no worker able to process this task (e.g. there is no GPU
  3073. available and this task is only implemented for CUDA devices).
  3074. @end deftypefun
  3075. @deftypefun int starpu_task_wait_for_all (void)
  3076. This function blocks until all the tasks that were submitted are terminated.
  3077. @end deftypefun
  3078. @deftypefun {struct starpu_task *} starpu_get_current_task (void)
  3079. This function returns the task currently executed by the worker, or
  3080. NULL if it is called either from a thread that is not a task or simply
  3081. because there is no task being executed at the moment.
  3082. @end deftypefun
  3083. @deftypefun void starpu_display_codelet_stats ({struct starpu_codelet_t} *@var{cl})
  3084. Output on @code{stderr} some statistics on the codelet @var{cl}.
  3085. @end deftypefun
  3086. @c Callbacks : what can we put in callbacks ?
  3087. @node Explicit Dependencies
  3088. @section Explicit Dependencies
  3089. @menu
  3090. * starpu_task_declare_deps_array:: starpu_task_declare_deps_array
  3091. * starpu_tag_t:: Task logical identifier
  3092. * starpu_tag_declare_deps:: Declare the Dependencies of a Tag
  3093. * starpu_tag_declare_deps_array:: Declare the Dependencies of a Tag
  3094. * starpu_tag_wait:: Block until a Tag is terminated
  3095. * starpu_tag_wait_array:: Block until a set of Tags is terminated
  3096. * starpu_tag_remove:: Destroy a Tag
  3097. * starpu_tag_notify_from_apps:: Feed a tag explicitly
  3098. @end menu
  3099. @node starpu_task_declare_deps_array
  3100. @subsection @code{starpu_task_declare_deps_array} -- Declare task dependencies
  3101. @deftypefun void starpu_task_declare_deps_array ({struct starpu_task} *@var{task}, unsigned @var{ndeps}, {struct starpu_task} *@var{task_array[]})
  3102. Declare task dependencies between a @code{task} and an array of tasks of length
  3103. @code{ndeps}. This function must be called prior to the submission of the task,
  3104. but it may called after the submission or the execution of the tasks in the
  3105. array provided the tasks are still valid (ie. they were not automatically
  3106. destroyed). Calling this function on a task that was already submitted or with
  3107. an entry of @code{task_array} that is not a valid task anymore results in an
  3108. undefined behaviour. If @code{ndeps} is null, no dependency is added. It is
  3109. possible to call @code{starpu_task_declare_deps_array} multiple times on the
  3110. same task, in this case, the dependencies are added. It is possible to have
  3111. redundancy in the task dependencies.
  3112. @end deftypefun
  3113. @node starpu_tag_t
  3114. @subsection @code{starpu_tag_t} -- Task logical identifier
  3115. @table @asis
  3116. @item @emph{Description}:
  3117. It is possible to associate a task with a unique ``tag'' chosen by the application, and to express
  3118. dependencies between tasks by the means of those tags. To do so, fill the
  3119. @code{tag_id} field of the @code{starpu_task} structure with a tag number (can
  3120. be arbitrary) and set the @code{use_tag} field to 1.
  3121. If @code{starpu_tag_declare_deps} is called with this tag number, the task will
  3122. not be started until the tasks which holds the declared dependency tags are
  3123. completed.
  3124. @end table
  3125. @node starpu_tag_declare_deps
  3126. @subsection @code{starpu_tag_declare_deps} -- Declare the Dependencies of a Tag
  3127. @table @asis
  3128. @item @emph{Description}:
  3129. Specify the dependencies of the task identified by tag @code{id}. The first
  3130. argument specifies the tag which is configured, the second argument gives the
  3131. number of tag(s) on which @code{id} depends. The following arguments are the
  3132. tags which have to be terminated to unlock the task.
  3133. This function must be called before the associated task is submitted to StarPU
  3134. with @code{starpu_task_submit}.
  3135. @item @emph{Remark}
  3136. Because of the variable arity of @code{starpu_tag_declare_deps}, note that the
  3137. last arguments @emph{must} be of type @code{starpu_tag_t}: constant values
  3138. typically need to be explicitly casted. Using the
  3139. @code{starpu_tag_declare_deps_array} function avoids this hazard.
  3140. @item @emph{Prototype}:
  3141. @code{void starpu_tag_declare_deps(starpu_tag_t id, unsigned ndeps, ...);}
  3142. @item @emph{Example}:
  3143. @cartouche
  3144. @example
  3145. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  3146. starpu_tag_declare_deps((starpu_tag_t)0x1,
  3147. 2, (starpu_tag_t)0x32, (starpu_tag_t)0x52);
  3148. @end example
  3149. @end cartouche
  3150. @end table
  3151. @node starpu_tag_declare_deps_array
  3152. @subsection @code{starpu_tag_declare_deps_array} -- Declare the Dependencies of a Tag
  3153. @table @asis
  3154. @item @emph{Description}:
  3155. This function is similar to @code{starpu_tag_declare_deps}, except that its
  3156. does not take a variable number of arguments but an array of tags of size
  3157. @code{ndeps}.
  3158. @item @emph{Prototype}:
  3159. @code{void starpu_tag_declare_deps_array(starpu_tag_t id, unsigned ndeps, starpu_tag_t *array);}
  3160. @item @emph{Example}:
  3161. @cartouche
  3162. @example
  3163. /* Tag 0x1 depends on tags 0x32 and 0x52 */
  3164. starpu_tag_t tag_array[2] = @{0x32, 0x52@};
  3165. starpu_tag_declare_deps_array((starpu_tag_t)0x1, 2, tag_array);
  3166. @end example
  3167. @end cartouche
  3168. @end table
  3169. @node starpu_tag_wait
  3170. @subsection @code{starpu_tag_wait} -- Block until a Tag is terminated
  3171. @deftypefun void starpu_tag_wait (starpu_tag_t @var{id})
  3172. This function blocks until the task associated to tag @code{id} has been
  3173. executed. This is a blocking call which must therefore not be called within
  3174. tasks or callbacks, but only from the application directly. It is possible to
  3175. synchronize with the same tag multiple times, as long as the
  3176. @code{starpu_tag_remove} function is not called. Note that it is still
  3177. possible to synchronize with a tag associated to a task which @code{starpu_task}
  3178. data structure was freed (e.g. if the @code{destroy} flag of the
  3179. @code{starpu_task} was enabled).
  3180. @end deftypefun
  3181. @node starpu_tag_wait_array
  3182. @subsection @code{starpu_tag_wait_array} -- Block until a set of Tags is terminated
  3183. @deftypefun void starpu_tag_wait_array (unsigned @var{ntags}, starpu_tag_t *@var{id})
  3184. This function is similar to @code{starpu_tag_wait} except that it blocks until
  3185. @emph{all} the @code{ntags} tags contained in the @code{id} array are
  3186. terminated.
  3187. @end deftypefun
  3188. @node starpu_tag_remove
  3189. @subsection @code{starpu_tag_remove} -- Destroy a Tag
  3190. @deftypefun void starpu_tag_remove (starpu_tag_t @var{id})
  3191. This function releases the resources associated to tag @code{id}. It can be
  3192. called once the corresponding task has been executed and when there is
  3193. no other tag that depend on this tag anymore.
  3194. @end deftypefun
  3195. @node starpu_tag_notify_from_apps
  3196. @subsection @code{starpu_tag_notify_from_apps} -- Feed a Tag explicitly
  3197. @deftypefun void starpu_tag_notify_from_apps (starpu_tag_t @var{id})
  3198. This function explicitly unlocks tag @code{id}. It may be useful in the
  3199. case of applications which execute part of their computation outside StarPU
  3200. tasks (e.g. third-party libraries). It is also provided as a
  3201. convenient tool for the programmer, for instance to entirely construct the task
  3202. DAG before actually giving StarPU the opportunity to execute the tasks.
  3203. @end deftypefun
  3204. @node Implicit Data Dependencies
  3205. @section Implicit Data Dependencies
  3206. @menu
  3207. * starpu_data_set_default_sequential_consistency_flag:: starpu_data_set_default_sequential_consistency_flag
  3208. * starpu_data_get_default_sequential_consistency_flag:: starpu_data_get_default_sequential_consistency_flag
  3209. * starpu_data_set_sequential_consistency_flag:: starpu_data_set_sequential_consistency_flag
  3210. @end menu
  3211. In this section, we describe how StarPU makes it possible to insert implicit
  3212. task dependencies in order to enforce sequential data consistency. When this
  3213. data consistency is enabled on a specific data handle, any data access will
  3214. appear as sequentially consistent from the application. For instance, if the
  3215. application submits two tasks that access the same piece of data in read-only
  3216. mode, and then a third task that access it in write mode, dependencies will be
  3217. added between the two first tasks and the third one. Implicit data dependencies
  3218. are also inserted in the case of data accesses from the application.
  3219. @node starpu_data_set_default_sequential_consistency_flag
  3220. @subsection @code{starpu_data_set_default_sequential_consistency_flag} -- Set default sequential consistency flag
  3221. @deftypefun void starpu_data_set_default_sequential_consistency_flag (unsigned @var{flag})
  3222. Set the default sequential consistency flag. If a non-zero value is passed, a
  3223. sequential data consistency will be enforced for all handles registered after
  3224. this function call, otherwise it is disabled. By default, StarPU enables
  3225. sequential data consistency. It is also possible to select the data consistency
  3226. mode of a specific data handle with the
  3227. @code{starpu_data_set_sequential_consistency_flag} function.
  3228. @end deftypefun
  3229. @node starpu_data_get_default_sequential_consistency_flag
  3230. @subsection @code{starpu_data_get_default_sequential_consistency_flag} -- Get current default sequential consistency flag
  3231. @deftypefun unsigned starpu_data_set_default_sequential_consistency_flag (void)
  3232. This function returns the current default sequential consistency flag.
  3233. @end deftypefun
  3234. @node starpu_data_set_sequential_consistency_flag
  3235. @subsection @code{starpu_data_set_sequential_consistency_flag} -- Set data sequential consistency mode
  3236. @deftypefun void starpu_data_set_sequential_consistency_flag (starpu_data_handle @var{handle}, unsigned @var{flag})
  3237. Select the data consistency mode associated to a data handle. The consistency
  3238. mode set using this function has the priority over the default mode which can
  3239. be set with @code{starpu_data_set_sequential_consistency_flag}.
  3240. @end deftypefun
  3241. @node Performance Model API
  3242. @section Performance Model API
  3243. @menu
  3244. * starpu_load_history_debug::
  3245. * starpu_perfmodel_debugfilepath::
  3246. * starpu_perfmodel_get_arch_name::
  3247. * starpu_force_bus_sampling::
  3248. @end menu
  3249. @node starpu_load_history_debug
  3250. @subsection @code{starpu_load_history_debug}
  3251. @deftypefun int starpu_load_history_debug ({const char} *@var{symbol}, {struct starpu_perfmodel_t} *@var{model})
  3252. TODO
  3253. @end deftypefun
  3254. @node starpu_perfmodel_debugfilepath
  3255. @subsection @code{starpu_perfmodel_debugfilepath}
  3256. @deftypefun void starpu_perfmodel_debugfilepath ({struct starpu_perfmodel_t} *@var{model}, {enum starpu_perf_archtype} @var{arch}, char *@var{path}, size_t @var{maxlen})
  3257. TODO
  3258. @end deftypefun
  3259. @node starpu_perfmodel_get_arch_name
  3260. @subsection @code{starpu_perfmodel_get_arch_name}
  3261. @deftypefun void starpu_perfmodel_get_arch_name ({enum starpu_perf_archtype} @var{arch}, char *@var{archname}, size_t @var{maxlen})
  3262. TODO
  3263. @end deftypefun
  3264. @node starpu_force_bus_sampling
  3265. @subsection @code{starpu_force_bus_sampling}
  3266. @deftypefun void starpu_force_bus_sampling (void)
  3267. This forces sampling the bus performance model again.
  3268. @end deftypefun
  3269. @node Profiling API
  3270. @section Profiling API
  3271. @menu
  3272. * starpu_profiling_status_set:: starpu_profiling_status_set
  3273. * starpu_profiling_status_get:: starpu_profiling_status_get
  3274. * struct starpu_task_profiling_info:: task profiling information
  3275. * struct starpu_worker_profiling_info:: worker profiling information
  3276. * starpu_worker_get_profiling_info:: starpu_worker_get_profiling_info
  3277. * struct starpu_bus_profiling_info:: bus profiling information
  3278. * starpu_bus_get_count::
  3279. * starpu_bus_get_id::
  3280. * starpu_bus_get_src::
  3281. * starpu_bus_get_dst::
  3282. * starpu_timing_timespec_delay_us::
  3283. * starpu_timing_timespec_to_us::
  3284. * starpu_bus_profiling_helper_display_summary::
  3285. * starpu_worker_profiling_helper_display_summary::
  3286. @end menu
  3287. @node starpu_profiling_status_set
  3288. @subsection @code{starpu_profiling_status_set} -- Set current profiling status
  3289. @table @asis
  3290. @item @emph{Description}:
  3291. Thie function sets the profiling status. Profiling is activated by passing
  3292. @code{STARPU_PROFILING_ENABLE} in @code{status}. Passing
  3293. @code{STARPU_PROFILING_DISABLE} disables profiling. Calling this function
  3294. resets all profiling measurements. When profiling is enabled, the
  3295. @code{profiling_info} field of the @code{struct starpu_task} structure points
  3296. to a valid @code{struct starpu_task_profiling_info} structure containing
  3297. information about the execution of the task.
  3298. @item @emph{Return value}:
  3299. Negative return values indicate an error, otherwise the previous status is
  3300. returned.
  3301. @item @emph{Prototype}:
  3302. @code{int starpu_profiling_status_set(int status);}
  3303. @end table
  3304. @node starpu_profiling_status_get
  3305. @subsection @code{starpu_profiling_status_get} -- Get current profiling status
  3306. @deftypefun int starpu_profiling_status_get (void)
  3307. Return the current profiling status or a negative value in case there was an error.
  3308. @end deftypefun
  3309. @node struct starpu_task_profiling_info
  3310. @subsection @code{struct starpu_task_profiling_info} -- Task profiling information
  3311. @table @asis
  3312. @item @emph{Description}:
  3313. This structure contains information about the execution of a task. It is
  3314. accessible from the @code{.profiling_info} field of the @code{starpu_task}
  3315. structure if profiling was enabled.
  3316. @item @emph{Fields}:
  3317. @table @asis
  3318. @item @code{submit_time}:
  3319. Date of task submission (relative to the initialization of StarPU).
  3320. @item @code{start_time}:
  3321. Date of task execution beginning (relative to the initialization of StarPU).
  3322. @item @code{end_time}:
  3323. Date of task execution termination (relative to the initialization of StarPU).
  3324. @item @code{workerid}:
  3325. Identifier of the worker which has executed the task.
  3326. @end table
  3327. @end table
  3328. @node struct starpu_worker_profiling_info
  3329. @subsection @code{struct starpu_worker_profiling_info} -- Worker profiling information
  3330. @table @asis
  3331. @item @emph{Description}:
  3332. This structure contains the profiling information associated to a worker.
  3333. @item @emph{Fields}:
  3334. @table @asis
  3335. @item @code{start_time}:
  3336. Starting date for the reported profiling measurements.
  3337. @item @code{total_time}:
  3338. Duration of the profiling measurement interval.
  3339. @item @code{executing_time}:
  3340. Time spent by the worker to execute tasks during the profiling measurement interval.
  3341. @item @code{sleeping_time}:
  3342. Time spent idling by the worker during the profiling measurement interval.
  3343. @item @code{executed_tasks}:
  3344. Number of tasks executed by the worker during the profiling measurement interval.
  3345. @end table
  3346. @end table
  3347. @node starpu_worker_get_profiling_info
  3348. @subsection @code{starpu_worker_get_profiling_info} -- Get worker profiling info
  3349. @table @asis
  3350. @item @emph{Description}:
  3351. Get the profiling info associated to the worker identified by @code{workerid},
  3352. and reset the profiling measurements. If the @code{worker_info} argument is
  3353. NULL, only reset the counters associated to worker @code{workerid}.
  3354. @item @emph{Return value}:
  3355. Upon successful completion, this function returns 0. Otherwise, a negative
  3356. value is returned.
  3357. @item @emph{Prototype}:
  3358. @code{int starpu_worker_get_profiling_info(int workerid, struct starpu_worker_profiling_info *worker_info);}
  3359. @end table
  3360. @node struct starpu_bus_profiling_info
  3361. @subsection @code{struct starpu_bus_profiling_info} -- Bus profiling information
  3362. @table @asis
  3363. @item @emph{Description}:
  3364. TODO
  3365. @item @emph{Fields}:
  3366. @table @asis
  3367. @item @code{start_time}:
  3368. TODO
  3369. @item @code{total_time}:
  3370. TODO
  3371. @item @code{transferred_bytes}:
  3372. TODO
  3373. @item @code{transfer_count}:
  3374. TODO
  3375. @end table
  3376. @end table
  3377. @node starpu_bus_get_count
  3378. @subsection @code{starpu_bus_get_count}
  3379. @deftypefun int starpu_bus_get_count (void)
  3380. TODO
  3381. @end deftypefun
  3382. @node starpu_bus_get_id
  3383. @subsection @code{starpu_bus_get_id}
  3384. @deftypefun int starpu_bus_get_id (int @var{src}, int @var{dst})
  3385. TODO
  3386. @end deftypefun
  3387. @node starpu_bus_get_src
  3388. @subsection @code{starpu_bus_get_src}
  3389. @deftypefun int starpu_bus_get_src (int @var{busid})
  3390. TODO
  3391. @end deftypefun
  3392. @node starpu_bus_get_dst
  3393. @subsection @code{starpu_bus_get_dst}
  3394. @deftypefun int starpu_bus_get_dst (int @var{busid})
  3395. TODO
  3396. @end deftypefun
  3397. @node starpu_timing_timespec_delay_us
  3398. @subsection @code{starpu_timing_timespec_delay_us}
  3399. @deftypefun double starpu_timing_timespec_delay_us ({struct timespec} *@var{start}, {struct timespec} *@var{end})
  3400. TODO
  3401. @end deftypefun
  3402. @node starpu_timing_timespec_to_us
  3403. @subsection @code{starpu_timing_timespec_to_us}
  3404. @deftypefun double starpu_timing_timespec_to_us ({struct timespec} *@var{ts})
  3405. TODO
  3406. @end deftypefun
  3407. @node starpu_bus_profiling_helper_display_summary
  3408. @subsection @code{starpu_bus_profiling_helper_display_summary}
  3409. @deftypefun void starpu_bus_profiling_helper_display_summary (void)
  3410. TODO
  3411. @end deftypefun
  3412. @node starpu_worker_profiling_helper_display_summary
  3413. @subsection @code{starpu_worker_profiling_helper_display_summary}
  3414. @deftypefun void starpu_worker_profiling_helper_display_summary (void)
  3415. TODO
  3416. @end deftypefun
  3417. @node CUDA extensions
  3418. @section CUDA extensions
  3419. @c void starpu_malloc(float **A, size_t dim);
  3420. @menu
  3421. * starpu_cuda_get_local_stream:: Get current worker's CUDA stream
  3422. * starpu_helper_cublas_init:: Initialize CUBLAS on every CUDA device
  3423. * starpu_helper_cublas_shutdown:: Deinitialize CUBLAS on every CUDA device
  3424. @end menu
  3425. @node starpu_cuda_get_local_stream
  3426. @subsection @code{starpu_cuda_get_local_stream} -- Get current worker's CUDA stream
  3427. @deftypefun {cudaStream_t *} starpu_cuda_get_local_stream (void)
  3428. StarPU provides a stream for every CUDA device controlled by StarPU. This
  3429. function is only provided for convenience so that programmers can easily use
  3430. asynchronous operations within codelets without having to create a stream by
  3431. hand. Note that the application is not forced to use the stream provided by
  3432. @code{starpu_cuda_get_local_stream} and may also create its own streams.
  3433. Synchronizing with @code{cudaThreadSynchronize()} is allowed, but will reduce
  3434. the likelihood of having all transfers overlapped.
  3435. @end deftypefun
  3436. @node starpu_helper_cublas_init
  3437. @subsection @code{starpu_helper_cublas_init} -- Initialize CUBLAS on every CUDA device
  3438. @deftypefun void starpu_helper_cublas_init (void)
  3439. The CUBLAS library must be initialized prior to any CUBLAS call. Calling
  3440. @code{starpu_helper_cublas_init} will initialize CUBLAS on every CUDA device
  3441. controlled by StarPU. This call blocks until CUBLAS has been properly
  3442. initialized on every device.
  3443. @end deftypefun
  3444. @node starpu_helper_cublas_shutdown
  3445. @subsection @code{starpu_helper_cublas_shutdown} -- Deinitialize CUBLAS on every CUDA device
  3446. @deftypefun void starpu_helper_cublas_shutdown (void)
  3447. This function synchronously deinitializes the CUBLAS library on every CUDA device.
  3448. @end deftypefun
  3449. @node OpenCL extensions
  3450. @section OpenCL extensions
  3451. @menu
  3452. * Enabling OpenCL:: Enabling OpenCL
  3453. * Compiling OpenCL kernels:: Compiling OpenCL kernels
  3454. * Loading OpenCL kernels:: Loading OpenCL kernels
  3455. * OpenCL statistics:: Collecting statistics from OpenCL
  3456. @end menu
  3457. @node Enabling OpenCL
  3458. @subsection Enabling OpenCL
  3459. On GPU devices which can run both CUDA and OpenCL, CUDA will be
  3460. enabled by default. To enable OpenCL, you need either to disable CUDA
  3461. when configuring StarPU:
  3462. @example
  3463. % ./configure --disable-cuda
  3464. @end example
  3465. or when running applications:
  3466. @example
  3467. % STARPU_NCUDA=0 ./application
  3468. @end example
  3469. OpenCL will automatically be started on any device not yet used by
  3470. CUDA. So on a machine running 4 GPUS, it is therefore possible to
  3471. enable CUDA on 2 devices, and OpenCL on the 2 other devices by doing
  3472. so:
  3473. @example
  3474. % STARPU_NCUDA=2 ./application
  3475. @end example
  3476. @node Compiling OpenCL kernels
  3477. @subsection Compiling OpenCL kernels
  3478. Source codes for OpenCL kernels can be stored in a file or in a
  3479. string. StarPU provides functions to build the program executable for
  3480. each available OpenCL device as a @code{cl_program} object. This
  3481. program executable can then be loaded within a specific queue as
  3482. explained in the next section. These are only helpers, Applications
  3483. can also fill a @code{starpu_opencl_program} array by hand for more advanced
  3484. use (e.g. different programs on the different OpenCL devices, for
  3485. relocation purpose for instance).
  3486. @menu
  3487. * starpu_opencl_load_opencl_from_file:: Compiling OpenCL source code
  3488. * starpu_opencl_load_opencl_from_string:: Compiling OpenCL source code
  3489. * starpu_opencl_unload_opencl:: Releasing OpenCL code
  3490. @end menu
  3491. @node starpu_opencl_load_opencl_from_file
  3492. @subsubsection @code{starpu_opencl_load_opencl_from_file} -- Compiling OpenCL source code
  3493. @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})
  3494. TODO
  3495. @end deftypefun
  3496. @node starpu_opencl_load_opencl_from_string
  3497. @subsubsection @code{starpu_opencl_load_opencl_from_string} -- Compiling OpenCL source code
  3498. @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})
  3499. TODO
  3500. @end deftypefun
  3501. @node starpu_opencl_unload_opencl
  3502. @subsubsection @code{starpu_opencl_unload_opencl} -- Releasing OpenCL code
  3503. @deftypefun int starpu_opencl_unload_opencl ({struct starpu_opencl_program} *@var{opencl_programs})
  3504. TODO
  3505. @end deftypefun
  3506. @node Loading OpenCL kernels
  3507. @subsection Loading OpenCL kernels
  3508. @menu
  3509. * starpu_opencl_load_kernel:: Loading a kernel
  3510. * starpu_opencl_relase_kernel:: Releasing a kernel
  3511. @end menu
  3512. @node starpu_opencl_load_kernel
  3513. @subsubsection @code{starpu_opencl_load_kernel} -- Loading a kernel
  3514. @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})
  3515. TODO
  3516. @end deftypefun
  3517. @node starpu_opencl_relase_kernel
  3518. @subsubsection @code{starpu_opencl_release_kernel} -- Releasing a kernel
  3519. @deftypefun int starpu_opencl_release_kernel (cl_kernel @var{kernel})
  3520. TODO
  3521. @end deftypefun
  3522. @node OpenCL statistics
  3523. @subsection OpenCL statistics
  3524. @menu
  3525. * starpu_opencl_collect_stats:: Collect statistics on a kernel execution
  3526. @end menu
  3527. @node starpu_opencl_collect_stats
  3528. @subsubsection @code{starpu_opencl_collect_stats} -- Collect statistics on a kernel execution
  3529. @deftypefun int starpu_opencl_collect_stats (cl_event @var{event})
  3530. After termination of the kernels, the OpenCL codelet should call this function
  3531. to pass it the even returned by @code{clEnqueueNDRangeKernel}, to let StarPU
  3532. collect statistics about the kernel execution (used cycles, consumed power).
  3533. @end deftypefun
  3534. @node Cell extensions
  3535. @section Cell extensions
  3536. nothing yet.
  3537. @node Miscellaneous helpers
  3538. @section Miscellaneous helpers
  3539. @menu
  3540. * starpu_data_cpy:: Copy a data handle into another data handle
  3541. * starpu_execute_on_each_worker:: Execute a function on a subset of workers
  3542. @end menu
  3543. @node starpu_data_cpy
  3544. @subsection @code{starpu_data_cpy} -- Copy a data handle into another data handle
  3545. @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})
  3546. Copy the content of the @code{src_handle} into the @code{dst_handle} handle.
  3547. The @code{asynchronous} parameter indicates whether the function should
  3548. block or not. In the case of an asynchronous call, it is possible to
  3549. synchronize with the termination of this operation either by the means of
  3550. implicit dependencies (if enabled) or by calling
  3551. @code{starpu_task_wait_for_all()}. If @code{callback_func} is not @code{NULL},
  3552. this callback function is executed after the handle has been copied, and it is
  3553. given the @code{callback_arg} pointer as argument.
  3554. @end deftypefun
  3555. @node starpu_execute_on_each_worker
  3556. @subsection @code{starpu_execute_on_each_worker} -- Execute a function on a subset of workers
  3557. @deftypefun void starpu_execute_on_each_worker (void (*@var{func})(void *), void *@var{arg}, uint32_t @var{where})
  3558. When calling this method, the offloaded function specified by the first argument is
  3559. executed by every StarPU worker that may execute the function.
  3560. The second argument is passed to the offloaded function.
  3561. The last argument specifies on which types of processing units the function
  3562. should be executed. Similarly to the @code{where} field of the
  3563. @code{starpu_codelet} structure, it is possible to specify that the function
  3564. should be executed on every CUDA device and every CPU by passing
  3565. @code{STARPU_CPU|STARPU_CUDA}.
  3566. This function blocks until the function has been executed on every appropriate
  3567. processing units, so that it may not be called from a callback function for
  3568. instance.
  3569. @end deftypefun
  3570. @c ---------------------------------------------------------------------
  3571. @c Advanced Topics
  3572. @c ---------------------------------------------------------------------
  3573. @node Advanced Topics
  3574. @chapter Advanced Topics
  3575. @menu
  3576. * Defining a new data interface::
  3577. * Defining a new scheduling policy::
  3578. @end menu
  3579. @node Defining a new data interface
  3580. @section Defining a new data interface
  3581. @menu
  3582. * struct starpu_data_interface_ops_t:: Per-interface methods
  3583. * struct starpu_data_copy_methods:: Per-interface data transfer methods
  3584. * An example of data interface:: An example of data interface
  3585. @end menu
  3586. @c void *starpu_data_get_interface_on_node(starpu_data_handle handle, unsigned memory_node); TODO
  3587. @node struct starpu_data_interface_ops_t
  3588. @subsection @code{struct starpu_data_interface_ops_t} -- Per-interface methods
  3589. @table @asis
  3590. @item @emph{Description}:
  3591. TODO describe all the different fields
  3592. @end table
  3593. @node struct starpu_data_copy_methods
  3594. @subsection @code{struct starpu_data_copy_methods} -- Per-interface data transfer methods
  3595. @table @asis
  3596. @item @emph{Description}:
  3597. TODO describe all the different fields
  3598. @end table
  3599. @node An example of data interface
  3600. @subsection An example of data interface
  3601. @table @asis
  3602. TODO
  3603. @end table
  3604. @node Defining a new scheduling policy
  3605. @section Defining a new scheduling policy
  3606. TODO
  3607. A full example showing how to define a new scheduling policy is available in
  3608. the StarPU sources in the directory @code{examples/scheduler/}.
  3609. @menu
  3610. * struct starpu_sched_policy_s::
  3611. * starpu_worker_set_sched_condition::
  3612. * starpu_sched_set_min_priority:: Set the minimum priority level
  3613. * starpu_sched_set_max_priority:: Set the maximum priority level
  3614. * starpu_push_local_task:: Assign a task to a worker
  3615. * Source code::
  3616. @end menu
  3617. @node struct starpu_sched_policy_s
  3618. @subsection @code{struct starpu_sched_policy_s} -- Scheduler methods
  3619. @table @asis
  3620. @item @emph{Description}:
  3621. This structure contains all the methods that implement a scheduling policy. An
  3622. application may specify which scheduling strategy in the @code{sched_policy}
  3623. field of the @code{starpu_conf} structure passed to the @code{starpu_init}
  3624. function.
  3625. @item @emph{Fields}:
  3626. @table @asis
  3627. @item @code{init_sched}:
  3628. Initialize the scheduling policy.
  3629. @item @code{deinit_sched}:
  3630. Cleanup the scheduling policy.
  3631. @item @code{push_task}:
  3632. Insert a task into the scheduler.
  3633. @item @code{push_prio_task}:
  3634. Insert a priority task into the scheduler.
  3635. @item @code{push_prio_notify}:
  3636. Notify the scheduler that a task was pushed on the worker. This method is
  3637. called when a task that was explicitely assigned to a worker is scheduled. This
  3638. method therefore permits to keep the state of of the scheduler coherent even
  3639. when StarPU bypasses the scheduling strategy.
  3640. @item @code{pop_task}:
  3641. Get a task from the scheduler. The mutex associated to the worker is already
  3642. taken when this method is called. If this method is defined as @code{NULL}, the
  3643. worker will only execute tasks from its local queue. In this case, the
  3644. @code{push_task} method should use the @code{starpu_push_local_task} method to
  3645. assign tasks to the different workers.
  3646. @item @code{pop_every_task}:
  3647. Remove all available tasks from the scheduler (tasks are chained by the means
  3648. of the prev and next fields of the starpu_task structure). The mutex associated
  3649. to the worker is already taken when this method is called.
  3650. @item @code{post_exec_hook} (optionnal):
  3651. This method is called every time a task has been executed.
  3652. @item @code{policy_name}:
  3653. Name of the policy (optionnal).
  3654. @item @code{policy_description}:
  3655. Description of the policy (optionnal).
  3656. @end table
  3657. @end table
  3658. @node starpu_worker_set_sched_condition
  3659. @subsection @code{starpu_worker_set_sched_condition} -- Specify the condition variable associated to a worker
  3660. @deftypefun void starpu_worker_set_sched_condition (int @var{workerid}, pthread_cond_t *@var{sched_cond}, pthread_mutex_t *@var{sched_mutex})
  3661. When there is no available task for a worker, StarPU blocks this worker on a
  3662. condition variable. This function specifies which condition variable (and the
  3663. associated mutex) should be used to block (and to wake up) a worker. Note that
  3664. multiple workers may use the same condition variable. For instance, in the case
  3665. of a scheduling strategy with a single task queue, the same condition variable
  3666. would be used to block and wake up all workers.
  3667. The initialization method of a scheduling strategy (@code{init_sched}) must
  3668. call this function once per worker.
  3669. @end deftypefun
  3670. @node starpu_sched_set_min_priority
  3671. @subsection @code{starpu_sched_set_min_priority}
  3672. @deftypefun void starpu_sched_set_min_priority (int @var{min_prio})
  3673. Defines the minimum priority level supported by the scheduling policy. The
  3674. default minimum priority level is the same as the default priority level which
  3675. is 0 by convention. The application may access that value by calling the
  3676. @code{starpu_sched_get_min_priority} function. This function should only be
  3677. called from the initialization method of the scheduling policy, and should not
  3678. be used directly from the application.
  3679. @end deftypefun
  3680. @node starpu_sched_set_max_priority
  3681. @subsection @code{starpu_sched_set_max_priority}
  3682. @deftypefun void starpu_sched_set_min_priority (int @var{max_prio})
  3683. Defines the maximum priority level supported by the scheduling policy. The
  3684. default maximum priority level is 1. The application may access that value by
  3685. calling the @code{starpu_sched_get_max_priority} function. This function should
  3686. only be called from the initialization method of the scheduling policy, and
  3687. should not be used directly from the application.
  3688. @end deftypefun
  3689. @node starpu_push_local_task
  3690. @subsection @code{starpu_push_local_task}
  3691. @deftypefun int starpu_push_local_task (int @var{workerid}, {struct starpu_task} *@var{task}, int @var{back})
  3692. The scheduling policy may put tasks directly into a worker's local queue so
  3693. that it is not always necessary to create its own queue when the local queue
  3694. is sufficient. If "back" not null, the task is put at the back of the queue
  3695. where the worker will pop tasks first. Setting "back" to 0 therefore ensures
  3696. a FIFO ordering.
  3697. @end deftypefun
  3698. @node Source code
  3699. @subsection Source code
  3700. @cartouche
  3701. @smallexample
  3702. static struct starpu_sched_policy_s dummy_sched_policy = @{
  3703. .init_sched = init_dummy_sched,
  3704. .deinit_sched = deinit_dummy_sched,
  3705. .push_task = push_task_dummy,
  3706. .push_prio_task = NULL,
  3707. .pop_task = pop_task_dummy,
  3708. .post_exec_hook = NULL,
  3709. .pop_every_task = NULL,
  3710. .policy_name = "dummy",
  3711. .policy_description = "dummy scheduling strategy"
  3712. @};
  3713. @end smallexample
  3714. @end cartouche
  3715. @c ---------------------------------------------------------------------
  3716. @c Appendices
  3717. @c ---------------------------------------------------------------------
  3718. @c ---------------------------------------------------------------------
  3719. @c Full source code for the 'Scaling a Vector' example
  3720. @c ---------------------------------------------------------------------
  3721. @node Full source code for the 'Scaling a Vector' example
  3722. @appendix Full source code for the 'Scaling a Vector' example
  3723. @menu
  3724. * Main application::
  3725. * CPU Kernel::
  3726. * CUDA Kernel::
  3727. * OpenCL Kernel::
  3728. @end menu
  3729. @node Main application
  3730. @section Main application
  3731. @smallexample
  3732. @include vector_scal_c.texi
  3733. @end smallexample
  3734. @node CPU Kernel
  3735. @section CPU Kernel
  3736. @smallexample
  3737. @include vector_scal_cpu.texi
  3738. @end smallexample
  3739. @node CUDA Kernel
  3740. @section CUDA Kernel
  3741. @smallexample
  3742. @include vector_scal_cuda.texi
  3743. @end smallexample
  3744. @node OpenCL Kernel
  3745. @section OpenCL Kernel
  3746. @menu
  3747. * Invoking the kernel::
  3748. * Source of the kernel::
  3749. @end menu
  3750. @node Invoking the kernel
  3751. @subsection Invoking the kernel
  3752. @smallexample
  3753. @include vector_scal_opencl.texi
  3754. @end smallexample
  3755. @node Source of the kernel
  3756. @subsection Source of the kernel
  3757. @smallexample
  3758. @include vector_scal_opencl_codelet.texi
  3759. @end smallexample
  3760. @c
  3761. @c Indices.
  3762. @c
  3763. @node Function Index
  3764. @unnumbered Function Index
  3765. @printindex fn
  3766. @bye