X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/217ab9d5146bf370bbb20065fd357a5c099c78ee..b2018541e799348bb66131a39284ea8d4cfc49f9:/src/smpi/internals/smpi_host.cpp diff --git a/src/smpi/internals/smpi_host.cpp b/src/smpi/internals/smpi_host.cpp index 25cadabe2f..03035c7d05 100644 --- a/src/smpi/internals/smpi_host.cpp +++ b/src/smpi/internals/smpi_host.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -94,23 +94,23 @@ Host::Host(s4u::Host* ptr) : host(ptr) const char* orecv_string = host->get_property("smpi/or"); if (orecv_string != nullptr) { - orecv_parsed_values = parse_factor(orecv_string); + orecv_parsed_values = simgrid::smpi::utils::parse_factor(orecv_string); } else { - orecv_parsed_values = parse_factor(config::get_value("smpi/or")); + orecv_parsed_values = simgrid::smpi::utils::parse_factor(config::get_value("smpi/or")); } const char* osend_string = host->get_property("smpi/os"); if (osend_string != nullptr) { - osend_parsed_values = parse_factor(osend_string); + osend_parsed_values = simgrid::smpi::utils::parse_factor(osend_string); } else { - osend_parsed_values = parse_factor(config::get_value("smpi/os")); + osend_parsed_values = simgrid::smpi::utils::parse_factor(config::get_value("smpi/os")); } const char* oisend_string = host->get_property("smpi/ois"); if (oisend_string != nullptr) { - oisend_parsed_values = parse_factor(oisend_string); + oisend_parsed_values = simgrid::smpi::utils::parse_factor(oisend_string); } else { - oisend_parsed_values = parse_factor(config::get_value("smpi/ois")); + oisend_parsed_values = simgrid::smpi::utils::parse_factor(config::get_value("smpi/ois")); } }