X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4871b54f42ce85370d6acdbcb7e42bf75a63b389..20bb321a5cf8f244e33b5562b9dd1d8fb5d4864a:/src/surf/workstation_ptask_L07.hpp diff --git a/src/surf/workstation_ptask_L07.hpp b/src/surf/workstation_ptask_L07.hpp index d999f1df02..aea13ee620 100644 --- a/src/surf/workstation_ptask_L07.hpp +++ b/src/surf/workstation_ptask_L07.hpp @@ -1,3 +1,9 @@ +/* Copyright (c) 2013-2014. 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. */ + #include "workstation_interface.hpp" #ifndef WORKSTATION_L07_HPP_ @@ -25,8 +31,8 @@ typedef CpuL07 *CpuL07Ptr; class LinkL07; typedef LinkL07 *LinkL07Ptr; -class WorkstationL07ActionLmm; -typedef WorkstationL07ActionLmm *WorkstationL07ActionLmmPtr; +class WorkstationL07Action; +typedef WorkstationL07Action *WorkstationL07ActionPtr; /********* * Tools * @@ -69,6 +75,12 @@ public: e_surf_resource_state_t state_initial, tmgr_trace_t state_trace, xbt_dict_t cpu_properties); + CpuPtr createResource(const char *name, xbt_dynar_t powerPeak, + int pstate, double power_scale, + tmgr_trace_t power_trace, int core, + e_surf_resource_state_t state_initial, + tmgr_trace_t state_trace, + xbt_dict_t cpu_properties); void addTraces() {DIE_IMPOSSIBLE;}; WorkstationL07ModelPtr p_workstationModel; @@ -89,7 +101,6 @@ public: e_surf_link_sharing_policy_t policy, xbt_dict_t properties); - xbt_dynar_t getRoute(WorkstationPtr /*src*/, WorkstationPtr /*dst*/) {DIE_IMPOSSIBLE;}; ActionPtr communicate(RoutingEdgePtr /*src*/, RoutingEdgePtr /*dst*/, double /*size*/, double /*rate*/) {DIE_IMPOSSIBLE;}; void addTraces() {DIE_IMPOSSIBLE;}; WorkstationL07ModelPtr p_workstationModel; @@ -99,7 +110,7 @@ public: * Resource * ************/ -class WorkstationL07 : public WorkstationLmm { +class WorkstationL07 : public Workstation { public: WorkstationL07(WorkstationModelPtr model, const char* name, xbt_dict_t props, RoutingEdgePtr netElm, CpuPtr cpu); //bool isUsed(); @@ -114,30 +125,39 @@ public: double getConsumedEnergy(); }; -class CpuL07 : public CpuLmm { +class CpuL07 : public Cpu { + friend void WorkstationL07Model::addTraces(); + tmgr_trace_event_t p_stateEvent; + tmgr_trace_event_t p_powerEvent; public: - CpuL07(CpuL07ModelPtr model, const char* name, xbt_dict_t properties); + CpuL07(CpuL07ModelPtr model, const char* name, xbt_dict_t properties, + double power_scale, + double power_initial, tmgr_trace_t power_trace, + e_surf_resource_state_t state_initial, tmgr_trace_t state_trace); bool isUsed(); //bool isUsed() {DIE_IMPOSSIBLE;}; void updateState(tmgr_trace_event_t event_type, double value, double date); - e_surf_resource_state_t getState(); - double getSpeed(double load); - double getAvailableSpeed(); - ActionPtr execute(double /*size*/) {DIE_IMPOSSIBLE;}; - ActionPtr sleep(double /*duration*/) {DIE_IMPOSSIBLE;}; + CpuActionPtr execute(double /*size*/) {DIE_IMPOSSIBLE;}; + CpuActionPtr sleep(double /*duration*/) {DIE_IMPOSSIBLE;}; double getCurrentPowerPeak() {THROW_UNIMPLEMENTED;}; double getPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;}; int getNbPstates() {THROW_UNIMPLEMENTED;}; void setPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;}; double getConsumedEnergy() {THROW_UNIMPLEMENTED;}; - - double m_powerCurrent; }; -class LinkL07 : public NetworkLinkLmm { +class LinkL07 : public NetworkLink { public: - LinkL07(NetworkL07ModelPtr model, const char* name, xbt_dict_t props); + LinkL07(NetworkL07ModelPtr model, const char* name, xbt_dict_t props, + double bw_initial, + tmgr_trace_t bw_trace, + double lat_initial, + tmgr_trace_t lat_trace, + e_surf_resource_state_t + state_initial, + tmgr_trace_t state_trace, + e_surf_link_sharing_policy_t policy); ~LinkL07(){ }; bool isUsed(); @@ -145,6 +165,8 @@ public: double getBandwidth(); double getLatency(); bool isShared(); + void updateBandwidth(double value, double date=surf_get_clock()); + void updateLatency(double value, double date=surf_get_clock()); double m_latCurrent; tmgr_trace_event_t p_latEvent; @@ -155,11 +177,19 @@ public: /********** * Action * **********/ -class WorkstationL07ActionLmm : public WorkstationActionLmm { +class WorkstationL07Action : public WorkstationAction { + friend ActionPtr WorkstationL07::execute(double size); + friend ActionPtr WorkstationL07::sleep(double duration); + friend ActionPtr WorkstationL07Model::executeParallelTask(int workstation_nb, + void **workstation_list, + double + *computation_amount, double + *communication_amount, + double rate); public: - WorkstationL07ActionLmm(ModelPtr model, double cost, bool failed) - : Action(model, cost, failed), WorkstationActionLmm() {}; - ~WorkstationL07ActionLmm(); + WorkstationL07Action(ModelPtr model, double cost, bool failed) + : WorkstationAction(model, cost, failed) {}; + ~WorkstationL07Action(); void updateBound();