starpu.texi 190 KB

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