X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8fda7faea52d55ca15ff084a64029b2a63e2f720..68997ed0ab7577d77738903148eeac6822d6b21a:/src/surf/plugins/energy.cpp diff --git a/src/surf/plugins/energy.cpp b/src/surf/plugins/energy.cpp index d0d1d32f71..9a6cc76ed7 100644 --- a/src/surf/plugins/energy.cpp +++ b/src/surf/plugins/energy.cpp @@ -205,8 +205,8 @@ void HostEnergy::initWattsRangeList() for (int i=0; i< pstate_nb; i++) { /* retrieve the power values associated with the current pstate */ xbt_dynar_t current_power_values = xbt_str_split(xbt_dynar_get_as(all_power_values, i, char*), ":"); - xbt_assert(xbt_dynar_length(current_power_values) > 1, - "Power properties incorrectly defined - could not retrieve min and max power values for host %s", + xbt_assert(xbt_dynar_length(current_power_values) == 3, + "Power properties incorrectly defined - could not retrieve idle, min and max power values for host %s", host->name().c_str()); /* min_power corresponds to the idle power (cpu load = 0) */ @@ -220,6 +220,7 @@ void HostEnergy::initWattsRangeList() xbt_str_parse_double(xbt_dynar_get_as(current_power_values, 2, char*), msg_max) ); power_range_watts_list.push_back(range); + xbt_free(msg_idle); xbt_free(msg_min); xbt_free(msg_max); @@ -233,7 +234,7 @@ void HostEnergy::initWattsRangeList() /* **************************** events callback *************************** */ static void onCreation(simgrid::s4u::Host& host) { - if (dynamic_cast(host.pimpl_)) // Ignore virtual machines + if (dynamic_cast(&host)) // Ignore virtual machines return; host.extension_set(new HostEnergy(&host)); } @@ -245,9 +246,9 @@ static void onActionStateChange(simgrid::surf::CpuAction *action, simgrid::surf: if(sghost == nullptr) continue; simgrid::surf::HostImpl* host = sghost->pimpl_; - simgrid::surf::VirtualMachineImpl* vm = dynamic_cast(host); + simgrid::s4u::VirtualMachine* vm = dynamic_cast(sghost); if (vm) // If it's a VM, take the corresponding PM - host = vm->getPm()->pimpl_; + host = vm->pimpl_vm_->getPm()->pimpl_; HostEnergy *host_energy = host->piface_->extension(); @@ -257,7 +258,7 @@ static void onActionStateChange(simgrid::surf::CpuAction *action, simgrid::surf: } static void onHostStateChange(simgrid::s4u::Host &host) { - if (dynamic_cast(host.pimpl_)) // Ignore virtual machines + if (dynamic_cast(&host)) // Ignore virtual machines return; HostEnergy *host_energy = host.extension(); @@ -268,7 +269,7 @@ static void onHostStateChange(simgrid::s4u::Host &host) { static void onHostDestruction(simgrid::s4u::Host& host) { // Ignore virtual machines - if (dynamic_cast(host.pimpl_)) + if (dynamic_cast(&host)) return; HostEnergy *host_energy = host.extension(); host_energy->update();