Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix smpi issue
authorPaul Bédaride <paul.bedaride@gmail.com>
Fri, 15 Nov 2013 16:02:48 +0000 (17:02 +0100)
committerPaul Bédaride <paul.bedaride@gmail.com>
Fri, 15 Nov 2013 16:02:48 +0000 (17:02 +0100)
src/smpi/smpi_bench.c

index ddd6832..bdc0055 100644 (file)
@@ -201,7 +201,7 @@ unsigned int smpi_sleep(unsigned int secs)
 
   double flops = (double) secs*simcall_host_get_speed(SIMIX_host_self());
   XBT_DEBUG("Sleep for: %f flops", flops);
-  action = simcall_host_execute("computation", SIMIX_host_self(), flops, 1);
+  action = simcall_host_execute("computation", SIMIX_host_self(), flops, 1, 0, 0);
   #ifdef HAVE_TRACING
     simcall_set_category (action, TRACE_internal_smpi_get_category());
   #endif