README 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 computation 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 computation 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. * automake
  30. ++=====================++
  31. || III. Getting StarPU ||
  32. ++=====================++
  33. StarPU is available on https://gforge.inria.fr/projects/starpu/.
  34. It is also possible to access the latest svn version:
  35. $ svn checkout svn://scm.gforge.inria.fr/svn/starpu/trunk/
  36. or via http (DAV):
  37. $ svn checkout https://scm.gforge.inria.fr/svn/starpu/trunk/
  38. ++=============================++
  39. || IV. Building and Installing ||
  40. ++=============================++
  41. +---------------------------
  42. | IV.a. For svn version only
  43. $ autoreconf
  44. +------------------------
  45. | IV.b. For all versions:
  46. $ ./configure
  47. $ make
  48. $ make install
  49. ++============++
  50. || V. Contact ||
  51. ++============++
  52. For any questions regarding StarPU, please contact Cédric Augonnet
  53. (cedric.augonnet@inria.fr).