浏览代码

Enable by default data allocation cache

Nathalie Furmento 12 年之前
父节点
当前提交
546f492c1c
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1 0
      ChangeLog
  2. 1 1
      configure.ac

+ 1 - 0
ChangeLog

@@ -139,6 +139,7 @@ Small features:
   * New macro STARPU_RELEASE_VERSION
   * New function starpu_get_version() to return as 3 integers the
     release version of StarPU.
+  * Enable by default data allocation cache
 
 Changes:
   * Fix the block filter functions.

+ 1 - 1
configure.ac

@@ -1092,7 +1092,7 @@ AC_DEFINE_UNQUOTED(STARPU_MAXNODES, [$maxnodes],
 AC_MSG_CHECKING(whether allocation cache should be used)
 AC_ARG_ENABLE(allocation-cache, [AS_HELP_STRING([--enable-allocation-cache],
 			[enable data allocation cache])],
-			enable_allocation_cache=$enableval, enable_allocation_cache=no)
+			enable_allocation_cache=$enableval, enable_allocation_cache=yes)
 AC_MSG_RESULT($enable_allocation_cache)
 if test x$enable_allocation_cache = xyes; then
 	AC_DEFINE(STARPU_USE_ALLOCATION_CACHE, [1], [enable data allocation cache])