Forráskód Böngészése

fix starpu version

Samuel Thibault 10 éve
szülő
commit
0513ca0942

+ 9 - 9
doc/doxygen/chapters/01building.doxy

@@ -21,7 +21,7 @@ $ apt-cache search starpu
 To install what you need, type for example:
 
 \verbatim
-$ sudo apt-get install libstarpu-1.2 libstarpu-dev
+$ sudo apt-get install libstarpu-1.3 libstarpu-dev
 \endverbatim
 
 \section InstallingFromSource Installing from Source
@@ -142,8 +142,8 @@ $ make install
 \endverbatim
 
 Libtool interface versioning information are included in
-libraries names (<c>libstarpu-1.2.so</c>, <c>libstarpumpi-1.2.so</c> and
-<c>libstarpufft-1.2.so</c>).
+libraries names (<c>libstarpu-1.3.so</c>, <c>libstarpumpi-1.3.so</c> and
+<c>libstarpufft-1.3.so</c>).
 
 \section SettingUpYourOwnCode Setting up Your Own Code
 
@@ -167,8 +167,8 @@ The flags required to compile or link against StarPU are then
 accessible with the following commands:
 
 \verbatim
-$ pkg-config --cflags starpu-1.2  # options for the compiler
-$ pkg-config --libs starpu-1.2    # options for the linker
+$ pkg-config --cflags starpu-1.3  # options for the compiler
+$ pkg-config --libs starpu-1.3    # options for the linker
 \endverbatim
 
 Note that it is still possible to use the API provided in the version
@@ -178,9 +178,9 @@ It is also possible to use the API provided in the version
 0.9 of StarPU by calling <c>pkg-config</c> with the <c>libstarpu</c> package.
 Similar packages are provided for <c>libstarpumpi</c> and <c>libstarpufft</c>.
 
-Make sure that <c>pkg-config --libs starpu-1.2</c> actually produces some output
+Make sure that <c>pkg-config --libs starpu-1.3</c> actually produces some output
 before going further: <c>PKG_CONFIG_PATH</c> has to point to the place where
-<c>starpu-1.2.pc</c> was installed during <c>make install</c>.
+<c>starpu-1.3.pc</c> was installed during <c>make install</c>.
 
 Also pass the option <c>--static</c> if the application is to be
 linked statically.
@@ -196,8 +196,8 @@ When using a Makefile, the following lines can be added to set the
 options for the compiler and the linker:
 
 \verbatim
-CFLAGS          +=      $$(pkg-config --cflags starpu-1.2)
-LDFLAGS         +=      $$(pkg-config --libs starpu-1.2)
+CFLAGS          +=      $$(pkg-config --cflags starpu-1.3)
+LDFLAGS         +=      $$(pkg-config --libs starpu-1.3)
 \endverbatim
 
 \subsection RunningABasicStarPUApplication Running a Basic StarPU Application

+ 12 - 12
doc/doxygen/chapters/02basic_examples.doxy

@@ -27,9 +27,9 @@ has a single implementation for CPU:
 The code can then be compiled and linked with GCC and the flag <c>-fplugin</c>:
 
 \verbatim
-$ gcc `pkg-config starpu-1.2 --cflags` hello-starpu.c \
-    -fplugin=`pkg-config starpu-1.2 --variable=gccplugin` \
-    `pkg-config starpu-1.2 --libs`
+$ gcc `pkg-config starpu-1.3 --cflags` hello-starpu.c \
+    -fplugin=`pkg-config starpu-1.3 --variable=gccplugin` \
+    `pkg-config starpu-1.3 --libs`
 \endverbatim
 
 The code can also be compiled without the StarPU C extension and will
@@ -156,7 +156,7 @@ int main(int argc, char **argv)
 
 \verbatim
 $ make hello_world
-cc $(pkg-config --cflags starpu-1.2) hello_world.c -o hello_world $(pkg-config --libs starpu-1.2)
+cc $(pkg-config --cflags starpu-1.3) hello_world.c -o hello_world $(pkg-config --libs starpu-1.3)
 $ ./hello_world
 Hello world
 \endverbatim
@@ -234,7 +234,7 @@ int main(int argc, char **argv)
 
 \verbatim
 $ make hello_world
-cc $(pkg-config --cflags starpu-1.2) hello_world.c -o hello_world $(pkg-config --libs starpu-1.2)
+cc $(pkg-config --cflags starpu-1.3) hello_world.c -o hello_world $(pkg-config --libs starpu-1.3)
 $ ./hello_world
 Hello world (params = {1, 2.000000} )
 \endverbatim
@@ -285,7 +285,7 @@ int main(int argc, char **argv)
 
 \verbatim
 $ make hello_world
-cc $(pkg-config --cflags starpu-1.2) hello_world.c -o hello_world $(pkg-config --libs starpu-1.2) 
+cc $(pkg-config --cflags starpu-1.3) hello_world.c -o hello_world $(pkg-config --libs starpu-1.3) 
 $ ./hello_world
 Hello world
 Callback function (arg 42)
@@ -385,9 +385,9 @@ Finally, StarPU is shut down.
 The program can be compiled and linked with GCC and the flag <c>-fplugin</c>:
 
 \verbatim
-$ gcc `pkg-config starpu-1.2 --cflags` vector_scal.c \
-    -fplugin=`pkg-config starpu-1.2 --variable=gccplugin` \
-    `pkg-config starpu-1.2 --libs`
+$ gcc `pkg-config starpu-1.3 --cflags` vector_scal.c \
+    -fplugin=`pkg-config starpu-1.3 --variable=gccplugin` \
+    `pkg-config starpu-1.3 --libs`
 \endverbatim
 
 And voilà!
@@ -606,7 +606,7 @@ pointer.
 
 \verbatim
 $ make vector_scal
-cc $(pkg-config --cflags starpu-1.2) vector_scal.c -o vector_scal $(pkg-config --libs starpu-1.2)
+cc $(pkg-config --cflags starpu-1.3) vector_scal.c -o vector_scal $(pkg-config --libs starpu-1.3)
 $ ./vector_scal
 0.000000 3.000000 6.000000 9.000000 12.000000
 \endverbatim
@@ -668,8 +668,8 @@ be compiled at run-time when calling the function
 starpu_opencl_load_opencl_from_file().
 
 \verbatim
-CFLAGS  += $(shell pkg-config --cflags starpu-1.2)
-LDFLAGS += $(shell pkg-config --libs starpu-1.2)
+CFLAGS  += $(shell pkg-config --cflags starpu-1.3)
+LDFLAGS += $(shell pkg-config --libs starpu-1.3)
 CC       = gcc
 
 vector_scal: vector_scal.o vector_scal_cpu.o vector_scal_cuda.o vector_scal_opencl.o

+ 2 - 2
doc/doxygen/chapters/16mpi_support.doxy

@@ -27,8 +27,8 @@ The flags required to compile or link against the MPI layer are
 accessible with the following commands:
 
 \verbatim
-$ pkg-config --cflags starpumpi-1.2  # options for the compiler
-$ pkg-config --libs starpumpi-1.2    # options for the linker
+$ pkg-config --cflags starpumpi-1.3  # options for the compiler
+$ pkg-config --libs starpumpi-1.3    # options for the linker
 \endverbatim
 
 You also need pass the option <c>--static</c> if the application is to

+ 2 - 2
doc/doxygen/chapters/17fft_support.doxy

@@ -62,8 +62,8 @@ The flags required to compile or link against the FFT library are accessible
 with the following commands:
 
 \verbatim
-$ pkg-config --cflags starpufft-1.2  # options for the compiler
-$ pkg-config --libs starpufft-1.2    # options for the linker
+$ pkg-config --cflags starpufft-1.3  # options for the compiler
+$ pkg-config --libs starpufft-1.3    # options for the linker
 \endverbatim
 
 Also pass the option <c>--static</c> if the application is to be linked statically.

+ 1 - 1
doc/doxygen/chapters/19c_extensions.doxy

@@ -29,7 +29,7 @@ When StarPU has been installed with its GCC plug-in, programs that use
 these extensions can be compiled this way:
 
 \verbatim
-$ gcc -c -fplugin=`pkg-config starpu-1.2 --variable=gccplugin` foo.c
+$ gcc -c -fplugin=`pkg-config starpu-1.3 --variable=gccplugin` foo.c
 \endverbatim
 
 When the plug-in is not available, the above <c>pkg-config</c>