X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a1958aceb8f70618dac966308391b311912a15f8..5843ccab4e336d47ca34f54e68760ac78d242f36:/src/kernel/resource/NetworkModelFactors.hpp diff --git a/src/kernel/resource/NetworkModelFactors.hpp b/src/kernel/resource/NetworkModelFactors.hpp index 8dcb751597..b01ae2894d 100644 --- a/src/kernel/resource/NetworkModelFactors.hpp +++ b/src/kernel/resource/NetworkModelFactors.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2023. 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. */ @@ -6,7 +6,8 @@ #ifndef SIMGRID_KERNEL_RESOURCE_NETWORKMODELFACTORS_HPP #define SIMGRID_KERNEL_RESOURCE_NETWORKMODELFACTORS_HPP -#include "simgrid/sg_config.hpp" +#include "src/kernel/resource/FactorSet.hpp" +#include "src/simgrid/sg_config.hpp" #include "xbt/asserts.h" #include @@ -18,11 +19,13 @@ namespace simgrid::kernel::resource { /** This Trait of NetworkModel is in charge of handling the network factors (bw and lat) */ class XBT_PUBLIC NetworkModelFactors { + static FactorSet cfg_latency_factor; + static FactorSet cfg_bandwidth_factor; + using NetworkFactorCb = double(double size, const s4u::Host* src, const s4u::Host* dst, const std::vector& links, const std::unordered_set& netzones); -protected: std::function lat_factor_cb_; std::function bw_factor_cb_; @@ -32,22 +35,27 @@ public: * @details Depending on the model, the effective latency when sending a message might be different from the * theoretical latency of the link, in function of the message size. In order to account for this, this function gets * this factor. - * - * @param size The size of the message. - * @return The latency factor. */ - double get_latency_factor(double size = 0); + double get_latency_factor(double size, const s4u::Host* src, const s4u::Host* dst, + const std::vector& links, + const std::unordered_set& netzones) const; + + /** Get the right multiplicative factor for the bandwidth (only if no callback was defined) */ + double get_latency_factor() const; /** * @brief Get the right multiplicative factor for the bandwidth. + * * @details Depending on the model, the effective bandwidth when sending a message might be different from the * theoretical bandwidth of the link, in function of the message size. In order to account for this, this function * gets this factor. - * - * @param size The size of the message. - * @return The bandwidth factor. */ - double get_bandwidth_factor(double size = 0); + double get_bandwidth_factor(double size, const s4u::Host* src, const s4u::Host* dst, + const std::vector& links, + const std::unordered_set& netzones) const; + + /** Get the right multiplicative factor for the bandwidth (only if no callback was defined) */ + double get_bandwidth_factor() const; /** * @brief Callback to set the bandwidth and latency factors used in a communication @@ -68,6 +76,9 @@ public: /** @brief Configure the bandwidth factor callback */ void set_bw_factor_cb(const std::function& cb); + + /** Returns whether a callback was set for latency-factor OR bandwidth-factor */ + bool has_network_factor_cb() const { return lat_factor_cb_ || bw_factor_cb_; } }; } // namespace simgrid::kernel::resource