X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9e15b5981e2c82e9991fe01619664a23ccc011aa..eefc25aa1c98cbb7458cbf5d38007470e3bef7d0:/src/surf/plugins/host_energy.cpp diff --git a/src/surf/plugins/host_energy.cpp b/src/surf/plugins/host_energy.cpp index 82fe90d338..f34657686b 100644 --- a/src/surf/plugins/host_energy.cpp +++ b/src/surf/plugins/host_energy.cpp @@ -235,7 +235,7 @@ double HostEnergy::getCurrentWattsValue() cpu_load = host->pimpl_cpu->get_constraint()->get_usage() / current_speed; /** Divide by the number of cores here **/ - cpu_load /= host->pimpl_cpu->coreCount(); + cpu_load /= host->pimpl_cpu->get_cores_count(); if (cpu_load > 1) // A machine with a load > 1 consumes as much as a fully loaded machine, not more cpu_load = 1; @@ -384,7 +384,7 @@ static void onCreation(simgrid::s4u::Host& host) static void onActionStateChange(simgrid::surf::CpuAction* action, simgrid::kernel::resource::Action::State previous) { for (simgrid::surf::Cpu* const& cpu : action->cpus()) { - simgrid::s4u::Host* host = cpu->getHost(); + simgrid::s4u::Host* host = cpu->get_host(); if (host != nullptr) { // If it's a VM, take the corresponding PM