mirror of
https://gitlab.com/manzerbredes/loosely-coupled-dss.git
synced 2025-04-06 11:36:25 +02:00
Debug/Cleaning
This commit is contained in:
parent
95fc03c7e0
commit
9365501740
4 changed files with 31 additions and 26 deletions
|
@ -3,6 +3,8 @@ library("knitr")
|
||||||
|
|
||||||
data=read_csv("results.csv")
|
data=read_csv("results.csv")
|
||||||
|
|
||||||
|
r_=function(x){round(x,digits=2)}
|
||||||
|
|
||||||
finalEnergy=data%>%group_by(simkey,wireless,wakeupfor)%>%summarize(wireless=first(wireless),sd=sd(energy),wakeupfor=first(wakeupfor),energy=mean(energy))
|
finalEnergy=data%>%group_by(simkey,wireless,wakeupfor)%>%summarize(wireless=first(wireless),sd=sd(energy),wakeupfor=first(wakeupfor),energy=mean(energy))
|
||||||
finalStats=data%>%group_by(simkey,wireless,wakeupfor,seed)%>%
|
finalStats=data%>%group_by(simkey,wireless,wakeupfor,seed)%>%
|
||||||
summarise(success=sum(nSend))%>%
|
summarise(success=sum(nSend))%>%
|
||||||
|
@ -32,9 +34,9 @@ ggplot(finalEnergy,aes(x=simkey,y=energy,fill=wireless))+
|
||||||
xlab("Scenarios")+ylab("Energy (J)")+
|
xlab("Scenarios")+ylab("Energy (J)")+
|
||||||
geom_errorbar(position=position_dodge(0.9),aes(ymin=energy-sd, ymax=energy+sd),width=0.5,size=1.5,) +
|
geom_errorbar(position=position_dodge(0.9),aes(ymin=energy-sd, ymax=energy+sd),width=0.5,size=1.5,) +
|
||||||
facet_wrap(~ wakeupfor) +
|
facet_wrap(~ wakeupfor) +
|
||||||
geom_text(aes(label = round(energy+sd), y= energy+sd),vjust=-0.4,position=position_dodge(0.9))+
|
geom_text(aes(label = r_(energy+sd), y= energy+sd),vjust=-0.4,position=position_dodge(0.9))+
|
||||||
geom_text(aes(label = round(energy-sd), y= energy-sd),vjust=+1.5,position=position_dodge(0.9))+
|
geom_text(aes(label = r_(energy-sd), y= energy-sd),vjust=+1.5,position=position_dodge(0.9))+
|
||||||
geom_text(aes(label = round(energy), y= energy/2),fontface="bold",colour="white",position=position_dodge(0.9))
|
geom_text(aes(label = r_(energy), y= energy/2),fontface="bold",colour="white",position=position_dodge(0.9))
|
||||||
ggsave("energy.png")
|
ggsave("energy.png")
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,9 +44,9 @@ ggplot(finalStats,aes(x=simkey,y=success,fill=wireless))+
|
||||||
geom_bar(stat="identity",position=position_dodge())+
|
geom_bar(stat="identity",position=position_dodge())+
|
||||||
xlab("Scenarios")+ylab("Energy (J)")+
|
xlab("Scenarios")+ylab("Energy (J)")+
|
||||||
geom_errorbar(position=position_dodge(0.9),aes(ymin=success-sd_success, ymax=success+sd_success),width=0.5,size=1.5,) +
|
geom_errorbar(position=position_dodge(0.9),aes(ymin=success-sd_success, ymax=success+sd_success),width=0.5,size=1.5,) +
|
||||||
geom_text(aes(label = round(success+sd_success,digits=1), y= success+sd_success),vjust=-0.4,position=position_dodge(0.9))+
|
geom_text(aes(label = r_(success+sd_success), y= success+sd_success),vjust=-0.4,position=position_dodge(0.9))+
|
||||||
geom_text(aes(label = round(success-sd_success,digits=1), y= success-sd_success),vjust=+1.5,position=position_dodge(0.9))+
|
geom_text(aes(label = r_(success-sd_success), y= success-sd_success),vjust=+1.5,position=position_dodge(0.9))+
|
||||||
geom_text(aes(label = round(success,digits=1), y= success/2),fontface="bold",colour="white",position=position_dodge(0.9))+
|
geom_text(aes(label = r_(success), y= success/2),fontface="bold",colour="white",position=position_dodge(0.9))+
|
||||||
facet_wrap(~ wakeupfor) +
|
facet_wrap(~ wakeupfor) +
|
||||||
ggsave("success.png")
|
ggsave("success.png")
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 181 KiB After Width: | Height: | Size: 226 KiB |
Binary file not shown.
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 156 KiB |
|
@ -16,6 +16,7 @@
|
||||||
#define MODE_RX() simgrid::s4u::this_actor::get_host()->set_pstate(2);
|
#define MODE_RX() simgrid::s4u::this_actor::get_host()->set_pstate(2);
|
||||||
#define MODE_TX() simgrid::s4u::this_actor::get_host()->set_pstate(3);
|
#define MODE_TX() simgrid::s4u::this_actor::get_host()->set_pstate(3);
|
||||||
#define CLOCK (simgrid::s4u::Engine::get_clock())
|
#define CLOCK (simgrid::s4u::Engine::get_clock())
|
||||||
|
#define CNAME (selfName.c_str())
|
||||||
#define TRACK_UPTIME(instruction) \
|
#define TRACK_UPTIME(instruction) \
|
||||||
{ \
|
{ \
|
||||||
double uptimeTrack=CLOCK; \
|
double uptimeTrack=CLOCK; \
|
||||||
|
@ -26,7 +27,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Required by SimGrid
|
/// @brief Required by SimGrid
|
||||||
XBT_LOG_NEW_DEFAULT_CATEGORY(simulator, "[DAO]");
|
XBT_LOG_NEW_DEFAULT_CATEGORY(simulator, "[DAO] Loosely Coupled DSS");
|
||||||
|
|
||||||
/// @brief For convenience sake
|
/// @brief For convenience sake
|
||||||
typedef unsigned int u32;
|
typedef unsigned int u32;
|
||||||
|
@ -37,10 +38,11 @@ typedef unsigned int u32;
|
||||||
class Payload{
|
class Payload{
|
||||||
public:
|
public:
|
||||||
Payload():hint(0),duration(0),HasHint(false){}
|
Payload():hint(0),duration(0),HasHint(false){}
|
||||||
double hint;
|
Payload(Payload &p):hint(p.hint),duration(p.duration),HasHint(p.HasHint),DedicatedMailbox(p.DedicatedMailbox){}
|
||||||
double duration;
|
double hint; // The timestamp that should be used by the receiver
|
||||||
|
double duration; // The duration that should be used by the receiver
|
||||||
bool HasHint;
|
bool HasHint;
|
||||||
std::string DedicatedMailbox;
|
std::string DedicatedMailbox; // Dedicated mailbox used by the sender/receiver
|
||||||
};
|
};
|
||||||
|
|
||||||
/// @brief Observation node code
|
/// @brief Observation node code
|
||||||
|
@ -88,7 +90,7 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
simgrid::s4u::this_actor::get_host()->turn_on();
|
simgrid::s4u::this_actor::get_host()->turn_on();
|
||||||
Inputs i(selfName);
|
Inputs i(selfName);
|
||||||
simgrid::s4u::Mailbox *m = simgrid::s4u::Mailbox::by_name("medium");
|
simgrid::s4u::Mailbox *m = simgrid::s4u::Mailbox::by_name("medium");
|
||||||
XBT_INFO("Deploying observation node %s",selfName.c_str());
|
XBT_INFO("Deploying observation node %s",CNAME);
|
||||||
|
|
||||||
// Starting node
|
// Starting node
|
||||||
bool isObserver=false;
|
bool isObserver=false;
|
||||||
|
@ -100,24 +102,24 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
double totalUptime=0;
|
double totalUptime=0;
|
||||||
while(i.ShouldContinue()){
|
while(i.ShouldContinue()){
|
||||||
// Start by sleeping
|
// Start by sleeping
|
||||||
XBT_INFO("%s is spleeping",selfName.c_str());
|
XBT_INFO("%s is spleeping",CNAME);
|
||||||
MODE_OFF();
|
MODE_OFF();
|
||||||
simgrid::s4u::this_actor::sleep_until(i.GetTS());
|
simgrid::s4u::this_actor::sleep_until(i.GetTS());
|
||||||
MODE_ON();
|
MODE_ON();
|
||||||
XBT_INFO("%s wakes up",selfName.c_str());
|
XBT_INFO("%s wakes up",CNAME);
|
||||||
|
|
||||||
// Doing wake up stuff
|
// Doing wake up stuff
|
||||||
double uptime=i.GetDuration();
|
double uptime=i.GetDuration();
|
||||||
double upsince=simgrid::s4u::Engine::get_clock();
|
double upsince=simgrid::s4u::Engine::get_clock();
|
||||||
double upuntil=i.GetTS()+i.GetDuration();
|
double upuntil=i.GetTS()+i.GetDuration();
|
||||||
while(uptime>0.0000001)
|
while(uptime>0)
|
||||||
{
|
{
|
||||||
if(i.is_sender){
|
if(i.is_sender){
|
||||||
Payload *p=new Payload();
|
Payload *p=new Payload();
|
||||||
p->DedicatedMailbox="dedicated"+selfName;
|
p->DedicatedMailbox="dedicated"+selfName;
|
||||||
// Add hint informations to the payload
|
// Add hint informations to the payload
|
||||||
if(i.use_hint && i.HasNext()){
|
if(i.use_hint && i.HasNext()){
|
||||||
p->HasHint=i.use_hint;
|
p->HasHint=true;
|
||||||
p->duration=i.GetNextDuration();
|
p->duration=i.GetNextDuration();
|
||||||
p->hint=i.GetNextTS();
|
p->hint=i.GetNextTS();
|
||||||
}
|
}
|
||||||
|
@ -133,7 +135,7 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
MODE_TX();
|
MODE_TX();
|
||||||
if(p->HasHint){
|
if(p->HasHint){
|
||||||
TRACK_UPTIME(m_ded->put(p,i.hint_size,uptime));
|
TRACK_UPTIME(m_ded->put(p,i.hint_size,uptime));
|
||||||
XBT_INFO("%s sent a hint successfully",selfName.c_str());
|
XBT_INFO("%s sent a hint successfully",CNAME);
|
||||||
}
|
}
|
||||||
// Then try sending the data
|
// Then try sending the data
|
||||||
if(i.extended)
|
if(i.extended)
|
||||||
|
@ -141,20 +143,20 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
else
|
else
|
||||||
m_ded->put(p,i.data_size,uptime);
|
m_ded->put(p,i.data_size,uptime);
|
||||||
// If we reach here, data has been sent successfully
|
// If we reach here, data has been sent successfully
|
||||||
XBT_INFO("%s sent data successfully",selfName.c_str());
|
XBT_INFO("%s sent data successfully",CNAME);
|
||||||
nSend++;
|
nSend++;
|
||||||
i.is_sender=(nSend<(i.n_nodes-1));
|
i.is_sender=(nSend<(i.n_nodes-1));
|
||||||
isObserver=!i.is_sender;
|
isObserver=!i.is_sender;
|
||||||
}
|
}
|
||||||
catch(...){
|
catch(...){
|
||||||
XBT_INFO("%s could not send any data",selfName.c_str());
|
XBT_INFO("%s could not send any data",CNAME);
|
||||||
nSendFail++;
|
nSendFail++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(!isObserver){
|
else if(!isObserver){
|
||||||
Payload *p;
|
Payload *p; // Received data
|
||||||
Payload *hint; // To Save the received hint
|
Payload *hint; // To Save the received hint
|
||||||
bool hintReceived=false;
|
bool hintReceived=false; // In case of error during data rx this will be use to check if we could use the *hint Payload object
|
||||||
MODE_ON();
|
MODE_ON();
|
||||||
try {
|
try {
|
||||||
// Get the instantaneous message
|
// Get the instantaneous message
|
||||||
|
@ -164,7 +166,8 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
MODE_RX();
|
MODE_RX();
|
||||||
if(p->HasHint){
|
if(p->HasHint){
|
||||||
TRACK_UPTIME(p=m_ded->get<Payload>(uptime));
|
TRACK_UPTIME(p=m_ded->get<Payload>(uptime));
|
||||||
XBT_INFO("%s received a hint successfully",selfName.c_str());
|
XBT_INFO("%s received a hint successfully",CNAME);
|
||||||
|
hint=new Payload(*p); // Save hint
|
||||||
hintReceived=true;
|
hintReceived=true;
|
||||||
}
|
}
|
||||||
if(i.extended)
|
if(i.extended)
|
||||||
|
@ -172,20 +175,20 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
else
|
else
|
||||||
p=m_ded->get<Payload>(uptime); // Fetch data until sended or uptime expire
|
p=m_ded->get<Payload>(uptime); // Fetch data until sended or uptime expire
|
||||||
// If we reach here, data has been received successfully
|
// If we reach here, data has been received successfully
|
||||||
XBT_INFO("%s received data successfully",selfName.c_str());
|
XBT_INFO("%s received data successfully",CNAME);
|
||||||
nDataRcv++;
|
nDataRcv++;
|
||||||
isObserver=true;
|
isObserver=true;
|
||||||
i.is_sender=false;
|
i.is_sender=false;
|
||||||
|
|
||||||
}catch(...){
|
}catch(...){
|
||||||
XBT_INFO("%s could not receive any data",selfName.c_str());
|
XBT_INFO("%s could not receive any data",CNAME);
|
||||||
nRcvFail++;
|
nRcvFail++;
|
||||||
if(hintReceived)
|
if(hintReceived)
|
||||||
i.AddEvent(p->hint, p->duration); // Add the hint to the event list
|
i.AddEvent(hint->hint, hint->duration); // Add the hint to the event list
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
XBT_INFO("%s is observing his environment...",selfName.c_str());
|
XBT_INFO("%s is observing his environment...",CNAME);
|
||||||
MODE_ON();
|
MODE_ON();
|
||||||
simgrid::s4u::this_actor::sleep_for(uptime);
|
simgrid::s4u::this_actor::sleep_for(uptime);
|
||||||
}
|
}
|
||||||
|
@ -198,5 +201,5 @@ static void obs_node(std::vector<std::string> args) {
|
||||||
}
|
}
|
||||||
// Done
|
// Done
|
||||||
MODE_OFF()
|
MODE_OFF()
|
||||||
XBT_INFO("Observation node %s finished [LOG2PARSE](node:%s|isSender:%d|nSend:%d|nWakeUp:%d|nDataRcv:%d|nSendFail:%d|nRcvFail:%d|totalUptime:%f|seed:%d)",selfName.c_str(),selfName.c_str(),i.is_sender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,i.seed);
|
XBT_INFO("Observation node %s finished [LOG2PARSE](node:%s|isSender:%d|nSend:%d|nWakeUp:%d|nDataRcv:%d|nSendFail:%d|nRcvFail:%d|totalUptime:%f|seed:%d)",CNAME,CNAME,i.is_sender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,i.seed);
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue