starpu.texi 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 chapters/version.texi
  7. @copying
  8. Copyright @copyright{} 2009--2013 Universit@'e de Bordeaux 1
  9. @noindent
  10. Copyright @copyright{} 2010--2013 Centre National de la Recherche Scientifique
  11. @noindent
  12. Copyright @copyright{} 2011, 2012 Institut National de Recherche en Informatique et Automatique
  13. @quotation
  14. Permission is granted to copy, distribute and/or modify this document
  15. under the terms of the GNU Free Documentation License, Version 1.3
  16. or any later version published by the Free Software Foundation;
  17. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
  18. Texts. A copy of the license is included in the section entitled ``GNU
  19. Free Documentation License''.
  20. @end quotation
  21. @end copying
  22. @setchapternewpage odd
  23. @dircategory Development
  24. @direntry
  25. * StarPU: (starpu). StarPU Handbook
  26. @end direntry
  27. @titlepage
  28. @title StarPU Handbook
  29. @subtitle for StarPU @value{VERSION}
  30. @page
  31. @vskip 0pt plus 1fill
  32. @insertcopying
  33. @end titlepage
  34. @c @summarycontents
  35. @contents
  36. @page
  37. @ifnottex
  38. @node Top
  39. @top StarPU Handbook
  40. @end ifnottex
  41. This manual documents the usage of StarPU version @value{VERSION}. It
  42. was last updated on @value{UPDATED}.
  43. @ifnottex
  44. @insertcopying
  45. @end ifnottex
  46. @comment
  47. @comment When you add a new menu item, please keep the right hand
  48. @comment aligned to the same column. Do not use tabs. This provides
  49. @comment better formatting.
  50. @comment
  51. @menu
  52. * Introduction:: Getting started
  53. * Building and Installing StarPU::
  54. * Basic Examples:: Basic examples of the use of StarPU
  55. * Advanced Examples:: Advanced examples of the use of StarPU
  56. * Performance optimization:: How to optimize performance with StarPU
  57. * Performance feedback:: Performance debugging tools
  58. * Tips and Tricks:: Tips and tricks to know about
  59. * StarPU MPI support:: How to combine StarPU with MPI
  60. * StarPU FFT support:: How to perform FFT computations with StarPU
  61. * C Extensions:: Easier StarPU programming with GCC
  62. * SOCL OpenCL Extensions:: How to use OpenCL on top of StarPU
  63. * Scheduling Context Hypervisor:: How to use Scheduling Context Hypervisor with StarPU
  64. * StarPU's API:: The API to use StarPU
  65. * Configuration Options for StarPU::
  66. * Full source code for the 'Scaling a Vector' example::
  67. * GNU Free Documentation License:: How you can copy and share this manual.
  68. * Concept Index:: Index of programming concepts.
  69. * Function Index:: Index of C functions.
  70. * Datatype Index:: Index of C datatypes.
  71. * Configuration Index:: Index of configuration options.
  72. @end menu
  73. @c ---------------------------------------------------------------------
  74. @c Introduction to StarPU
  75. @c ---------------------------------------------------------------------
  76. @node Introduction
  77. @chapter Introduction to StarPU
  78. @include chapters/introduction.texi
  79. @ifnotinfo
  80. @ifnothtml
  81. @part Part 1:@* QuickStart
  82. @end ifnothtml
  83. @end ifnotinfo
  84. @c ---------------------------------------------------------------------
  85. @c Installing StarPU
  86. @c ---------------------------------------------------------------------
  87. @node Building and Installing StarPU
  88. @chapter Building and Installing StarPU
  89. @include chapters/installing.texi
  90. @c ---------------------------------------------------------------------
  91. @c Basic Examples
  92. @c ---------------------------------------------------------------------
  93. @node Basic Examples
  94. @chapter Basic Examples
  95. @include chapters/basic-examples.texi
  96. @c ---------------------------------------------------------------------
  97. @c Advanced Examples
  98. @c ---------------------------------------------------------------------
  99. @node Advanced Examples
  100. @chapter Advanced Examples
  101. @include chapters/advanced-examples.texi
  102. @ifnotinfo
  103. @ifnothtml
  104. @part Part 2:@* Optimization checklist and tips
  105. @end ifnothtml
  106. @end ifnotinfo
  107. @c ---------------------------------------------------------------------
  108. @c Performance options
  109. @c ---------------------------------------------------------------------
  110. @node Performance optimization
  111. @chapter How to optimize performance with StarPU
  112. @include chapters/perf-optimization.texi
  113. @c ---------------------------------------------------------------------
  114. @c Performance feedback
  115. @c ---------------------------------------------------------------------
  116. @node Performance feedback
  117. @chapter Performance feedback
  118. @include chapters/perf-feedback.texi
  119. @c ---------------------------------------------------------------------
  120. @c Tips and Tricks
  121. @c ---------------------------------------------------------------------
  122. @node Tips and Tricks
  123. @chapter Tips and Tricks to know about
  124. @include chapters/tips-tricks.texi
  125. @c ---------------------------------------------------------------------
  126. @c MPI support
  127. @c ---------------------------------------------------------------------
  128. @ifnotinfo
  129. @ifnothtml
  130. @part Part 3:@* Main documentation
  131. @end ifnothtml
  132. @end ifnotinfo
  133. @node StarPU MPI support
  134. @chapter StarPU MPI support
  135. @include chapters/mpi-support.texi
  136. @c ---------------------------------------------------------------------
  137. @c FFT support
  138. @c ---------------------------------------------------------------------
  139. @node StarPU FFT support
  140. @chapter StarPU FFT support
  141. @include chapters/fft-support.texi
  142. @c ---------------------------------------------------------------------
  143. @c C Extensions
  144. @c ---------------------------------------------------------------------
  145. @node C Extensions
  146. @chapter C Extensions
  147. @include chapters/c-extensions.texi
  148. @c ---------------------------------------------------------------------
  149. @c SOCL
  150. @c ---------------------------------------------------------------------
  151. @node SOCL OpenCL Extensions
  152. @chapter SOCL OpenCL Extensions
  153. @include chapters/socl.texi
  154. @c ---------------------------------------------------------------------
  155. @c Scheduling Context Hypervisor
  156. @c ---------------------------------------------------------------------
  157. @node Scheduling Context Hypervisor
  158. @chapter Scheduling Context Hypervisor
  159. @include chapters/sched_ctx_hypervisor.texi
  160. @ifnotinfo
  161. @ifnothtml
  162. @part Part 4:@* Reference documentation
  163. @end ifnothtml
  164. @end ifnotinfo
  165. @c ---------------------------------------------------------------------
  166. @c StarPU API
  167. @c ---------------------------------------------------------------------
  168. @node StarPU's API
  169. @chapter StarPU's API
  170. @include chapters/api.texi
  171. @c ---------------------------------------------------------------------
  172. @c Configuration options
  173. @c ---------------------------------------------------------------------
  174. @node Configuration Options for StarPU
  175. @chapter Configuration Options for StarPU
  176. @include chapters/configuration.texi
  177. @c ---------------------------------------------------------------------
  178. @c Appendices
  179. @c ---------------------------------------------------------------------
  180. @c ---------------------------------------------------------------------
  181. @c Full source code for the 'Scaling a Vector' example
  182. @c ---------------------------------------------------------------------
  183. @node Full source code for the 'Scaling a Vector' example
  184. @appendix Full source code for the 'Scaling a Vector' example
  185. @include chapters/scaling-vector-example.texi
  186. @c ---------------------------------------------------------------------
  187. @c License
  188. @c ---------------------------------------------------------------------
  189. @node GNU Free Documentation License
  190. @appendix GNU Free Documentation License
  191. @include chapters/fdl-1.3.texi
  192. @c ---------------------------------------------------------------------
  193. @c Indices
  194. @c ---------------------------------------------------------------------
  195. @c comment it out for now, it is too small to be kept for now. See how
  196. @c it can be merged with the glossary section in the introduction
  197. @node Concept Index
  198. @unnumbered Concept Index
  199. @printindex cp
  200. @node Function Index
  201. @unnumbered Function Index
  202. @printindex fn
  203. @node Datatype Index
  204. @unnumbered Datatype Index
  205. @printindex tp
  206. @node Configuration Index
  207. @unnumbered Configuration Index
  208. @printindex vr
  209. @bye