Parcourir la source

Disable pgreedy in the schedulers.sh.

This test often hangs, and anyway the scheduler is still experimental.
Cyril Roelandt il y a 13 ans
Parent
commit
b64a380f87
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      examples/scheduler/schedulers.sh

+ 5 - 0
examples/scheduler/schedulers.sh

@@ -29,6 +29,11 @@ SCHEDULERS=`STARPU_SCHED="help" ./basic_examples/hello_world 2>&1 | awk '/->/ {p
 
 for sched in $SCHEDULERS
 do
+    # XXX pgreedy often hangs, we have to fix it.
+    # Let's just disable it for now.
+    if [ "$sched" == "pgreedy" ] ; then
+        continue
+    fi
     echo "cholesky.$sched"
     STARPU_SCHED=$sched ./cholesky/cholesky_tag
     check_success $?