starpu.texi 189 KB

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