| 1234567891011121314151617181920212223242526272829 |
- # StarPU --- Runtime system for heterogeneous multicore architectures.
- #
- # Copyright (C) 2009-2011 Université de Bordeaux 1
- # Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- #
- # Permission is granted to copy, distribute and/or modify this document
- # under the terms of the GNU Free Documentation License, Version 1.3
- # or any later version published by the Free Software Foundation;
- # with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
- # See the GNU Free Documentation License in COPYING.GFDL for more details.
- Instructions on how to compile and run StarPU examples
- ------------------------------------------------------
- % export STARPU_DIR=<directory where StarPU is installed>
- % export PKG_CONFIG_PATH=$STARPU_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
- % export LD_LIBRARY_PATH=$STARPU_DIR/lib:$LD_LIBRARY_PATH
- % make hello_world
- % ./hello_world
- % make vector_scal
- % ./vector_scal
- % STARPU_NCPUS=0 ./vector_scal
- % STARPU_NCPUS=0 STARPU_NCUDA=0 ./vector_scal
|