X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/525b74fd6f296a850cabb98b51a28c23dba889de..5156a24c2e6a1695071db9450126c3cc08bf1734:/src/surf/cpu_ti.hpp diff --git a/src/surf/cpu_ti.hpp b/src/surf/cpu_ti.hpp index 42c1045049..4ce90e2881 100644 --- a/src/surf/cpu_ti.hpp +++ b/src/surf/cpu_ti.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2020. 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,10 +6,11 @@ #ifndef SURF_MODEL_CPUTI_H_ #define SURF_MODEL_CPUTI_H_ -#include "src/kernel/resource/profile/trace_mgr.hpp" +#include "src/kernel/resource/profile/Profile.hpp" #include "src/surf/cpu_interface.hpp" #include +#include namespace simgrid { namespace kernel { @@ -26,19 +27,15 @@ class XBT_PRIVATE CpuTi; *********/ class CpuTiProfile { public: - explicit CpuTiProfile(profile::Profile* profile); - CpuTiProfile(const CpuTiProfile&) = delete; - CpuTiProfile& operator=(const CpuTiProfile&) = delete; - ~CpuTiProfile(); + explicit CpuTiProfile(const profile::Profile* profile); double integrate_simple(double a, double b); double integrate_simple_point(double a); double solve_simple(double a, double amount); - double* time_points_; - double *integral_; - int nb_points_; - static int binary_search(double* array, double a, int size); + std::vector time_points_; + std::vector integral_; + static int binary_search(const std::vector& array, double a); }; class CpuTiTmgr { @@ -48,26 +45,25 @@ class CpuTiTmgr { }; public: - explicit CpuTiTmgr(double value) : type_(Type::FIXED), value_(value){}; + explicit CpuTiTmgr(double value) : value_(value){}; CpuTiTmgr(profile::Profile* speed_profile, double value); CpuTiTmgr(const CpuTiTmgr&) = delete; CpuTiTmgr& operator=(const CpuTiTmgr&) = delete; - ~CpuTiTmgr(); double integrate(double a, double b); double solve(double a, double amount); double get_power_scale(double a); private: - Type type_; + Type type_ = Type::FIXED; double value_; /*< Percentage of cpu speed available. Value fixed between 0 and 1 */ /* Dynamic */ double last_time_ = 0.0; /*< Integral interval last point (discrete time) */ - double total_ = 0.0; /*< Integral total between 0 and last_pointn */ + double total_ = 0.0; /*< Integral total between 0 and last point */ - CpuTiProfile* profile_ = nullptr; - profile::Profile* speed_profile_ = nullptr; + std::unique_ptr profile_ = nullptr; + profile::Profile* speed_profile_ = nullptr; }; /********** @@ -87,7 +83,7 @@ public: void suspend() override; void resume() override; void set_max_duration(double duration) override; - void set_priority(double priority) override; + void set_sharing_penalty(double sharing_penalty) override; double get_remains() override; CpuTi *cpu_; @@ -116,7 +112,7 @@ public: bool is_used() override; CpuAction* execution_start(double size) override; - Action* execution_start(double, int) override + CpuAction* execution_start(double, int) override { THROW_UNIMPLEMENTED; return nullptr; @@ -149,7 +145,7 @@ public: CpuTiModel& operator=(const CpuTiModel&) = delete; ~CpuTiModel() override; Cpu* create_cpu(s4u::Host* host, const std::vector& speed_per_pstate, int core) override; - double next_occuring_event(double now) override; + double next_occurring_event(double now) override; void update_actions_state(double now, double delta) override; CpuTiList modified_cpus_;