starpu.texi 165 KB

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