starpu.texi 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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--2011 Universit@'e de Bordeaux 1
  9. @noindent
  10. Copyright @copyright{} 2010, 2011, 2012 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. @node Top
  38. @top Preface
  39. This manual documents the usage of StarPU version @value{VERSION}. It
  40. was last updated on @value{UPDATED}.
  41. @ifnottex
  42. @insertcopying
  43. @end ifnottex
  44. @comment
  45. @comment When you add a new menu item, please keep the right hand
  46. @comment aligned to the same column. Do not use tabs. This provides
  47. @comment better formatting.
  48. @comment
  49. @menu
  50. * Introduction:: Getting started
  51. * Installing StarPU:: How to configure, build and install StarPU
  52. * Using StarPU:: How to run StarPU application
  53. * Basic Examples:: Basic examples of the use of StarPU
  54. * Advanced Examples:: Advanced examples of the use of StarPU
  55. * Performance optimization:: How to optimize performance with StarPU
  56. * Performance feedback:: Performance debugging tools
  57. * Tips and Tricks:: Tips and tricks to know about
  58. * StarPU MPI support:: How to combine StarPU with MPI
  59. * StarPU FFT support:: How to perform FFT computations with StarPU
  60. * C Extensions:: Easier StarPU programming with GCC
  61. * SOCL OpenCL Extensions:: How to use OpenCL on top of StarPU
  62. * StarPU Basic API:: The Basic API to use StarPU
  63. * StarPU Advanced API:: Advanced use of StarPU
  64. * Configuring StarPU:: How to configure StarPU
  65. * Full source code for the 'Scaling a Vector' example::
  66. * GNU Free Documentation License:: How you can copy and share this manual.
  67. * Concept Index:: Index of programming concepts.
  68. * Function Index:: Index of C functions.
  69. * Datatype Index:: Index of C datatypes
  70. @end menu
  71. @c ---------------------------------------------------------------------
  72. @c Introduction to StarPU
  73. @c ---------------------------------------------------------------------
  74. @node Introduction
  75. @chapter Introduction to StarPU
  76. @include chapters/introduction.texi
  77. @c ---------------------------------------------------------------------
  78. @c Installing StarPU
  79. @c ---------------------------------------------------------------------
  80. @node Installing StarPU
  81. @chapter Installing StarPU
  82. @include chapters/installing.texi
  83. @c ---------------------------------------------------------------------
  84. @c Using StarPU
  85. @c ---------------------------------------------------------------------
  86. @node Using StarPU
  87. @chapter Using StarPU
  88. @include chapters/using.texi
  89. @c ---------------------------------------------------------------------
  90. @c Basic Examples
  91. @c ---------------------------------------------------------------------
  92. @node Basic Examples
  93. @chapter Basic Examples
  94. @include chapters/basic-examples.texi
  95. @c ---------------------------------------------------------------------
  96. @c Advanced Examples
  97. @c ---------------------------------------------------------------------
  98. @node Advanced Examples
  99. @chapter Advanced Examples
  100. @include chapters/advanced-examples.texi
  101. @c ---------------------------------------------------------------------
  102. @c Performance options
  103. @c ---------------------------------------------------------------------
  104. @node Performance optimization
  105. @chapter How to optimize performance with StarPU
  106. @include chapters/perf-optimization.texi
  107. @c ---------------------------------------------------------------------
  108. @c Performance feedback
  109. @c ---------------------------------------------------------------------
  110. @node Performance feedback
  111. @chapter Performance feedback
  112. @include chapters/perf-feedback.texi
  113. @c ---------------------------------------------------------------------
  114. @c Tips and Tricks
  115. @c ---------------------------------------------------------------------
  116. @node Tips and Tricks
  117. @chapter Tips and Tricks to know about
  118. @include chapters/tips-tricks.texi
  119. @c ---------------------------------------------------------------------
  120. @c MPI support
  121. @c ---------------------------------------------------------------------
  122. @node StarPU MPI support
  123. @chapter StarPU MPI support
  124. @include chapters/mpi-support.texi
  125. @c ---------------------------------------------------------------------
  126. @c FFT support
  127. @c ---------------------------------------------------------------------
  128. @node StarPU FFT support
  129. @chapter StarPU FFT support
  130. @include chapters/fft-support.texi
  131. @c ---------------------------------------------------------------------
  132. @c C Extensions
  133. @c ---------------------------------------------------------------------
  134. @node C Extensions
  135. @chapter C Extensions
  136. @include chapters/c-extensions.texi
  137. @c ---------------------------------------------------------------------
  138. @c SOCL
  139. @c ---------------------------------------------------------------------
  140. @node SOCL OpenCL Extensions
  141. @chapter SOCL OpenCL Extensions
  142. @include chapters/socl.texi
  143. @c ---------------------------------------------------------------------
  144. @c StarPU API
  145. @c ---------------------------------------------------------------------
  146. @node StarPU Basic API
  147. @chapter StarPU Basic API
  148. @include chapters/basic-api.texi
  149. @c ---------------------------------------------------------------------
  150. @c Advanced Topics
  151. @c ---------------------------------------------------------------------
  152. @node StarPU Advanced API
  153. @chapter StarPU Advanced API
  154. @include chapters/advanced-api.texi
  155. @c ---------------------------------------------------------------------
  156. @c Configuration options
  157. @c ---------------------------------------------------------------------
  158. @node Configuring StarPU
  159. @chapter Configuring StarPU
  160. @include chapters/configuration.texi
  161. @c ---------------------------------------------------------------------
  162. @c Appendices
  163. @c ---------------------------------------------------------------------
  164. @c ---------------------------------------------------------------------
  165. @c Full source code for the 'Scaling a Vector' example
  166. @c ---------------------------------------------------------------------
  167. @node Full source code for the 'Scaling a Vector' example
  168. @appendix Full source code for the 'Scaling a Vector' example
  169. @include chapters/scaling-vector-example.texi
  170. @c ---------------------------------------------------------------------
  171. @c License
  172. @c ---------------------------------------------------------------------
  173. @node GNU Free Documentation License
  174. @appendix GNU Free Documentation License
  175. @include chapters/fdl-1.3.texi
  176. @c ---------------------------------------------------------------------
  177. @c Indices
  178. @c ---------------------------------------------------------------------
  179. @node Concept Index
  180. @unnumbered Concept Index
  181. @printindex cp
  182. @node Function Index
  183. @unnumbered Function Index
  184. @printindex fn
  185. @node Datatype Index
  186. @unnumbered Datatype Index
  187. @printindex tp
  188. @bye