Browse Source

Reduce examples/scheduler/schedulers.sh execution time

Samuel Thibault 6 years ago
parent
commit
cdbb6f1c2b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/scheduler/schedulers.sh

+ 2 - 2
examples/scheduler/schedulers.sh

@@ -3,7 +3,7 @@
 #
 #
 # Copyright (C) 2012                                     Inria
 # Copyright (C) 2012                                     Inria
 # Copyright (C) 2012-2015,2017,2018                      CNRS
 # Copyright (C) 2012-2015,2017,2018                      CNRS
-# Copyright (C) 2012,2017                                Université de Bordeaux
+# Copyright (C) 2012,2017,2019                           Université de Bordeaux
 #
 #
 # StarPU is free software; you can redistribute it and/or modify
 # StarPU is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
 # it under the terms of the GNU Lesser General Public License as published by
@@ -35,6 +35,6 @@ SCHEDULERS=`../tools/starpu_sched_display | grep -v heteroprio`
 for sched in $SCHEDULERS
 for sched in $SCHEDULERS
 do
 do
     echo "cholesky.$sched"
     echo "cholesky.$sched"
-    STARPU_SCHED=$sched ./cholesky/cholesky_tag
+    STARPU_SCHED=$sched ./cholesky/cholesky_tag -size $((960*3)) -nblocks 3
     check_success $?
     check_success $?
 done
 done