X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/242fde5e8077f8193db4df5f262a9672085c8d8a..6a42d0b4d34e2b9777922430ef85646dabbefa20:/examples/msg/cloud/bound.c diff --git a/examples/msg/cloud/bound.c b/examples/msg/cloud/bound.c index 0c471b0c64..8316bb5eb8 100644 --- a/examples/msg/cloud/bound.c +++ b/examples/msg/cloud/bound.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. +/* Copyright (c) 2007-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -135,39 +135,6 @@ static void test_one_task(msg_host_t hostA) XBT_INFO("### Test: with/without MSG_task_set_bound"); -#if 0 - /* Easy-to-understand code (without calling MSG_task_set_bound) */ - { - double clock_sta = MSG_get_clock(); - - msg_task_t task = MSG_task_create("Task", computation_amount, 0, NULL); - MSG_task_execute(task); - MSG_task_destroy(task); - - double clock_end = MSG_get_clock(); - double duration = clock_end - clock_sta; - double flops_per_sec = computation_amount / duration; - - XBT_INFO("not bound => duration %f (%f flops/s)", duration, flops_per_sec); - } - - /* Easy-to-understand code (with calling MSG_task_set_bound) */ - { - double clock_sta = MSG_get_clock(); - - msg_task_t task = MSG_task_create("Task", computation_amount, 0, NULL); - MSG_task_set_bound(task, cpu_speed / 2); - MSG_task_execute(task); - MSG_task_destroy(task); - - double clock_end = MSG_get_clock(); - double duration = clock_end - clock_sta; - double flops_per_sec = computation_amount / duration; - - XBT_INFO("bound to 0.5 => duration %f (%f flops/s)", duration, flops_per_sec); - } -#endif - { XBT_INFO("### Test: no bound for Task1@%s", hostA_name); launch_worker(hostA, "worker0", computation_amount, 0, 0);