Bladeren bron

doc: minor fixes

Nathalie Furmento 15 jaren geleden
bovenliggende
commit
da334ab146
1 gewijzigde bestanden met toevoegingen van 15 en 15 verwijderingen
  1. 15 15
      doc/starpu.texi

+ 15 - 15
doc/starpu.texi

@@ -2171,10 +2171,10 @@ instance.
 @menu
 @menu
 * Compiling and linking options::  
 * Compiling and linking options::  
 * Hello World::                 Submitting Tasks
 * Hello World::                 Submitting Tasks
-* Scaling a Vector::  Manipulating Data
+* Scaling a Vector::            Manipulating Data
 * Vector Scaling on an Hybrid CPU/GPU Machine::  Handling Heterogeneous Architectures
 * Vector Scaling on an Hybrid CPU/GPU Machine::  Handling Heterogeneous Architectures
-* Filtering data:: Partitionning data
-* More examples:: More examples shipped with StarPU
+* Partitioning Data::           Partitioning Data
+* More examples::               More examples shipped with StarPU
 @end menu
 @end menu
 
 
 @node Compiling and linking options
 @node Compiling and linking options
@@ -2360,9 +2360,9 @@ guarantee that asynchronous tasks have been executed before it returns.
 @subsection Execution of Hello World
 @subsection Execution of Hello World
 
 
 @smallexample
 @smallexample
-% make helloWorld
-cc $(pkg-config --cflags libstarpu)  $(pkg-config --libs libstarpu) helloWorld.c -o helloWorld
-% ./helloWorld
+% make hello_world
+cc $(pkg-config --cflags libstarpu)  $(pkg-config --libs libstarpu) hello_world.c -o hello_world
+% ./hello_world
 Hello world (array = @{1.000000, -1.000000@} )
 Hello world (array = @{1.000000, -1.000000@} )
 Callback function (arg 42)
 Callback function (arg 42)
 @end smallexample
 @end smallexample
@@ -2484,9 +2484,9 @@ to this vector made by other tasks.
 @subsection Execution of Vector Scaling
 @subsection Execution of Vector Scaling
 
 
 @smallexample
 @smallexample
-% make vector
-cc $(pkg-config --cflags libstarpu)  $(pkg-config --libs libstarpu)  vector.c   -o vector
-% ./vector
+% make vector_scal
+cc $(pkg-config --cflags libstarpu)  $(pkg-config --libs libstarpu)  vector_scal.c   -o vector_scal
+% ./vector_scal
 0.000000 3.000000 6.000000 9.000000 12.000000
 0.000000 3.000000 6.000000 9.000000 12.000000
 @end smallexample
 @end smallexample
 
 
@@ -2500,7 +2500,7 @@ only be executed by the CPUs, but also by a CUDA device.
 * Definition of the CUDA Codelet::  
 * Definition of the CUDA Codelet::  
 * Definition of the OpenCL Codelet::  
 * Definition of the OpenCL Codelet::  
 * Definition of the Main Code::  
 * Definition of the Main Code::  
-* Compilation and execution of Hybrid Vector Scaling::  
+* Execution of Hybrid Vector Scaling::  
 @end menu
 @end menu
 
 
 @node Definition of the CUDA Codelet
 @node Definition of the CUDA Codelet
@@ -2708,8 +2708,8 @@ int main(int argc, char **argv)
 @end smallexample
 @end smallexample
 @end cartouche
 @end cartouche
 
 
-@node Compilation and execution of Hybrid Vector Scaling
-@subsection Compilation and execution of Hybrid Vector Scaling
+@node Execution of Hybrid Vector Scaling
+@subsection Execution of Hybrid Vector Scaling
 
 
 The Makefile given at the beginning of the section must be extended to
 The Makefile given at the beginning of the section must be extended to
 give the rules to compile the CUDA source code. Note that the source
 give the rules to compile the CUDA source code. Note that the source
@@ -2760,8 +2760,8 @@ or by disabling CUDA devices:
 
 
 @c TODO: Add performance model example (and update basic_examples)
 @c TODO: Add performance model example (and update basic_examples)
 
 
-@node Filtering data
-@section Filtering data
+@node Partitioning Data
+@section Partitioning Data
 
 
 @cartouche
 @cartouche
 @smallexample
 @smallexample
@@ -2828,7 +2828,7 @@ More advanced examples include:
 
 
 @table @asis
 @table @asis
 @item @code{filters/}:
 @item @code{filters/}:
-	Examples using filters, as shown in @ref{Filtering data}.
+	Examples using filters, as shown in @ref{Partitioning Data}.
 @item @code{lu/}:
 @item @code{lu/}:
 	LU matrix factorization.
 	LU matrix factorization.
 @end table
 @end table