Browse Source

merge fixes

Andra Hugo 12 years ago
parent
commit
8673f158ae
3 changed files with 2 additions and 10 deletions
  1. 1 1
      configure.ac
  2. 1 0
      doc/Makefile.am
  3. 0 9
      doc/chapters/advanced-examples.texi

+ 1 - 1
configure.ac

@@ -905,7 +905,7 @@ AC_MSG_RESULT($enable_coverage)
 AC_SUBST(COVERAGE, $enable_coverage)
 AC_SUBST(COVERAGE, $enable_coverage)
 AM_CONDITIONAL(STARPU_COVERAGE_ENABLED, [test "x$enable_coverage" = "xyes"])
 AM_CONDITIONAL(STARPU_COVERAGE_ENABLED, [test "x$enable_coverage" = "xyes"])
 if test x$enable_coverage = xyes; then
 if test x$enable_coverage = xyes; then
-	CPPFLAGS="${CPPFLAGS} --coverage"
+	CFLAGS="${CFLAGS} --coverage"
 	LDFLAGS="${LDFLAGS} --coverage"
 	LDFLAGS="${LDFLAGS} --coverage"
 fi
 fi
 
 

+ 1 - 0
doc/Makefile.am

@@ -13,6 +13,7 @@
 info_TEXINFOS = starpu.texi
 info_TEXINFOS = starpu.texi
 
 
 starpu_TEXINFOS = chapters/advanced-api.texi \
 starpu_TEXINFOS = chapters/advanced-api.texi \
+	chapters/benchmarks.texi \
 	chapters/configuration.texi \
 	chapters/configuration.texi \
 	chapters/perf-feedback.texi \
 	chapters/perf-feedback.texi \
 	chapters/vector_scal_cpu.texi \
 	chapters/vector_scal_cpu.texi \

+ 0 - 9
doc/chapters/advanced-examples.texi

@@ -903,15 +903,6 @@ some nodes of the hierarchy have a big arity (e.g. many cores in a socket
 without a hierarchy of shared caches), StarPU will create combined workers of
 without a hierarchy of shared caches), StarPU will create combined workers of
 intermediate sizes. The @code{STARPU_SYNTHESIZE_ARITY_COMBINED_WORKER} variable
 intermediate sizes. The @code{STARPU_SYNTHESIZE_ARITY_COMBINED_WORKER} variable
 permits to tune the maximum arity between levels of combined workers.
 permits to tune the maximum arity between levels of combined workers.
-The user can give some hints to StarPU about combined workers sizes to favor.
-This can be done by using the environment variables @code{STARPU_MIN_WORKERSIZE}
-and @code{STARPU_MAX_WORKERSIZE}. When set, they will force StarPU to create the
-biggest combined workers possible without overstepping the defined boundaries.
-However, StarPU will create the remaining combined workers without abiding by
-the rules if not possible.
-For example : if the user specifies a minimum and maximum combined workers size
-of 3 on a machine containing 8 CPUs, StarPU will create a combined worker of
-size 2 beside the combined workers of size 3.
 
 
 The combined workers actually produced can be seen in the output of the
 The combined workers actually produced can be seen in the output of the
 @code{starpu_machine_display} tool (the @code{STARPU_SCHED} environment variable
 @code{starpu_machine_display} tool (the @code{STARPU_SCHED} environment variable