README 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ++=================++
  2. || I. Introduction ||
  3. ++=================++
  4. +----------------------
  5. | I.a. What is StarPU ?
  6. StarPU is a runtime system that offers support for heterogeneous multicore
  7. machines. While many efforts are devoted to design efficient compute kernels
  8. for those architectures (eg. to implement BLAS kernels on GPUs or on Cell's
  9. SPUs), StarPU not only takes care to offload such kernels (and to implement
  10. data coherency accross the machine), but it also makes sure the kernels are
  11. executed as efficiently as possible.
  12. +------------------------
  13. | I.b. What StarPU is not
  14. StarPU is not a new langage, and it does not extends existing langages either.
  15. StarPU does not help to write compute kernels.
  16. +---------------------------------
  17. | I.c. (How) Could StarPU help me?
  18. TODO
  19. ++==================++
  20. || II. Requirements ||
  21. ++==================++
  22. * make
  23. * gcc (version >= 4)
  24. * if CUDA support is enabled
  25. * CUDA (version >= 2.0)
  26. * CUBLAS (version >= 2.0)
  27. * extra requirements for the svn version
  28. * autoconf (version >= 2.60)
  29. ++=====================++
  30. || III. Getting StarPU ||
  31. ++=====================++
  32. StarPU is available on https://gforge.inria.fr/projects/starpu/.
  33. It is also possible to access the latest svn version:
  34. $ svn checkout svn://scm.gforge.inria.fr/svn/starpu/trunk/
  35. or via http (DAV):
  36. $ svn checkout https://scm.gforge.inria.fr/svn/starpu/trunk/
  37. ++=============================++
  38. || IV. Building and Installing ||
  39. ++=============================++
  40. +---------------------------
  41. | IV.a. For svn version only
  42. $ autoreconf
  43. +------------------------
  44. | IV.b. For all versions:
  45. $ ./configure
  46. $ make
  47. $ make install
  48. ++============++
  49. || V. Contact ||
  50. ++============++
  51. For any questions regarding StarPU, please contact Cédric Augonnet
  52. (cedric.augonnet@inria.fr).