diff --git a/doc/experiments/README.md b/doc/experiments/README.md index 798145e516c33a3e6b4baeb4b0d2ec93af517baf..3ee1d6c29a566490ebceba6e9b5f0f538d3de7f0 100644 --- a/doc/experiments/README.md +++ b/doc/experiments/README.md @@ -17,68 +17,72 @@ The following features are evaluated: - [Comparison with Distributed Constraint Optimization Problem (DCOP) solver](#comparison-with-distributed-constraint-optimization-problem-dcop-solver) - [Swap](#swap) -## Job Release +We consider the simulated cost c^S(t,n) as the effective cost of performing the task t +by the node n. : +- with a perfect knowledge of the computing environment, c^S(t,n) = c(t,n); +- with half of the nodes slowing down, c^S(t,n) = 2 * c(t,n) if n mod 2=1 and c^S(t,n) = c(t,n) otherwise. + This is the reason why e distinguish the two following metrics: +- the simulated flowtime C^S(A) for an allocation A according to the simulated costs; +- the real flowtime C^(At) for an allocation A according to the task completion times which are measured. -Our experiment aims at validating that the reallocation strategy adapts to the release of jobs. +The performance improvement rate is defined: -The experimental protocol consists in randomly generating 10 initial allocations for distinct STAP problems. -We empirically set: -- κ = 2 as a realistic value to capture the overhead induced by the recovery of non-local resources; -- m = 8 nodes; -- l = 4 jobs; -- n = 128 tasks with 10 resources per task; -- Each resource ρi is replicated 3 times and |ρi| ∈ [0;500]. -One job is released 10 seconds after the others and after the start of consumption. +γ = (C^R(AO) - C^R(Ae))/C^R(A0) -During the consumption of the initial allocation, we consider the following metrics : -- the flowtime of the current allocation according to the completion times of tasks - already performed which are measured and the simulated cost of forthcoming tasks; -- the number of performed tasks; -- the number of delegated tasks if the reallocation strategy is adopted. +where Ae is the allocation where tasks are executed and A0 is the initial allocation. During the consumption of the initial allocation, we consider the following metrics : - the flowtime of the current allocation according to the completion times of tasks already performed which are measured and the simulated cost of forthcoming tasks; - the number of performed tasks; -- the number of delegated tasks if any. - -These figures respectively compare these metrics for our delegation strategy with -Sequential Single-Issue (SSI) auctions and Parallel Single-Issue (PSI) -auctions [Lagoudakis et al., 2006]. +- the number of delegated tasks if the reallocation strategy is adopted. -In the method of allocation base on SSI auctions, all the tasks are initially unallocated. -Every agent bids on each unallocated task. -It bids the increase in the smallest mean flowtime that results from winning the -task that it bids on. The agent with the overall smallest bid is allocated the -corresponding task. Then, each agent re-bids on each unallocated task, and the cycle -repeats until all targets are assigned. +In order compare our reallocation strategy executed concurrently with this consumption process, we consider : +- an allocation method based on sequential single-item (SSI) auctions [Lagoudakis et al., 2006] where bids correspond to the flowtime, + which precedes the allocation process. Every agent bids on each unallocated task. + It bids the increase in the smallest mean flowtime that results from winning the + task that it bids on. The agent with the overall smallest bid is allocated the + corresponding task. Then, each agent re-bids on each unallocated task, and the cycle + repeats until all targets are assigned. When new jobs are released, additional tasks are + are allocated in the same way; +- a reallocation method based on parallel single-item (PSI) auctions [Lagoudakis et al., 2006] executed concurrently + with the consumption process where each node announces the pending jobs in its job pool. The agent that currently owns a task determines and + informs the winning agent for the target, which is the agent with the smallest bid on the target. + When new jobs are new jobs are released, additional tasks are reallocated in the same way. -In the method for reallocation based on PSI auctions, every agent -bids on each task in parallel. The agent that currently owns a task determines and -informs the winning agent for the target, which is the agent with the smallest bid on the target. +[Lagoudakis et al., 2006] Lagoudakis, S. K. C. T. M., Markakis, V., Kempe, D., Keskinocak, P., +Kleywegt, A., Meyerson, A., & Jain, S. (2006). The Power of Sequential Single-Item Auctions +for Agent Coordination. AAAI. 1625--1629. It is worth noticing that we do not implement single-round combinatorial auction since agents cannot bid on all possible bundles of tasks because the number of possible bundles is exponential in the number of tasks and the computation by the agents of their bids is NP-hard. -[Lagoudakis et al., 2006] Lagoudakis, S. K. C. T. M., Markakis, V., Kempe, D., Keskinocak, P., -Kleywegt, A., Meyerson, A., & Jain, S. (2006). The Power of Sequential Single-Item Auctions -for Agent Coordination. AAAI? 1625--1629 +The experimental protocol consists in randomly generating 25 initial allocations for distinct STAP problems. +We empirically set: +- κ = 2 as a realistic value to capture the overhead induced by the recovery of non-local resources; +- m = 8 nodes; +- l = 4 jobs; +- n ∈ [40;320] tasks with 10 resources per task; +- Each resource ρi is replicated 3 times and |ρi| ∈ [0;500]. -This figure shows the medians and standard deviations of our metrics as a function of the runtime -(according to a logarithmic timeline). +## Job Release - +Our experiment aims at validating that the reallocation strategy adapts to the release of jobs. -We observe that the flowtime of the allocation method based on SSI auctions executed before -the consumption process and after the job release is worst that the flowtime for executing a -random allocation since this method postpone the consumption. -We observe that the flowtime of the current allocation is better when the reallocation strategy is -executed continuously during the consumption process in particular after the job release. -Our strategy reallocates the task of the job as soon it is released in order to improve the -mean flowtime. The flowtime of our strategy is better than the flowtime of the reallocation method -based on PSI auctions since our strategy select the task and the recipient of the bargained delegation. +The experimental protocol consists in randomly generating 10 initial allocations for distinct STAP problems. +We empirically set n = 128 tasks with 10 resources per task. One job is released 10 seconds after the +others and after the start of consumption. + +We assume that initial allocations are random and that the agents have perfect knowledge of the execution environment. +execution environment ($c^{S_E}$). This figure shows the evolution of the medians and standard deviations of our metrics during +consumption (according to a logarithmic time scale) of 128 tasks divided into 4 jobs, one of which is released 10 seconds after the others and +after consumption has begun. In contrast to the SSI-based allocation method and the PSI-based reallocation method, our strategy +reallocates the tasks of a job as soon as it is released in order to +improve the achieved flowtime and reduce the consumption time. + + To run the experiment, execute 10 times: @@ -98,28 +102,16 @@ To generate the figures in 'experiments/jobRelease/figures/' : Our experiment aims at explaining how the reallocation strategy improves the flowtime when executed continuously during the consumption process. -The experimental protocol consists in randomly generating 10 initial allocations for distinct STAP problems. -We empirically set: -- κ = 2 as a realistic value to capture the overhead induced by the recovery of non-local resources; -- m = 8 nodes; -- l = 4 jobs; -- n = 128 tasks with 10 resources per task; -- Each resource ρi is replicated 3 times and |ρi| ∈ [0;500]. +This figure shows the evolution of the medians and standard deviations +standard deviations of our metrics over the course of the consumption (on a logarithmic +time scale) of 128 tasks. It confirms that the best flowtime +achieved is that obtained by our strategy when it is run concurrently with the +executed concurrently with the consumption process. The responsiveness of our strategy is explained by +the reallocation of tasks bundles that represent almost half of them thanks to multiple +concurrent bilateral negotiations that begin even before the consumption process (after $0.1$ second).  -This figure shows the medians and standard deviations of our metrics as a function of the runtime -(according to a logarithmic timeline). - -We observe that the flowtime of the allocation method based on SSI auctions executed before -the consumption process is worst that the flowtime for executing the initial random allocation -since this method postpone the consumption. -The flowtime of the current allocation is better when the reallocation strategy is -executed continuously during the consumption process. Our strategy improves the current flowtime -during the consumption process by delegating tasks even before the first task is consumed (after 0.1 second). -The flowtime of our strategy is better than the flowtime of the reallocation method based on PSI auctions -since our strategy select the task and the recipient of the bargained delegation. - To run the experiment, execute 10 times: sbt "run org.smastaplus.utils.MASTAPlusConsumer" @@ -142,37 +134,29 @@ the reallocation strategy: 2. does not penalize the consumption; 3. is robust to execution hazards (i.e. node slowdown). -We consider the simulated cost c^S(t,n) as the effective cost of performing the task t -by the node n. : -- with a perfect knowledge of the computing environment, c^S(t,n) = c(t,n); -- with half of the nodes slowing down, c^S(t,n) = 2 * c(t,n) if n mod 2=1 and c^S(t,n) = c(t,n) otherwise. -This is the reason why e distinguish the two following metrics: -- the simulated flowtime C^S(A) for an allocation A according to the simulated costs; -- the real flowtime C^(At) for an allocation A according to the task completion times which are measured. - -The performance improvement rate is defined: - -γ = (C^R(AO) - C^R(Ae))/C^R(A0) - -where Ae is the allocation where tasks are executed and A0 is the initial allocation. - -The experimental protocol consists in randomly generating 25 initial allocations for distinct STAP problems. -We empirically set: -- κ = 2 as a realistic value to capture the overhead induced by the recovery of non-local resources; -- m = 8 nodes; -- l = 4 jobs; -- n ∈ [40;320] tasks with 10 resources per task; -- Each resource ρi is replicated 3 times and |ρi| ∈ [0;500]. - ### The reallocation strategy improves the flowtime - +This figure shows the medians and standard deviations of our +of our metrics as a function of the number of tasks. We observe that the +flowtime achieved by the SSI auction-based allocation method employed prior to the +used before the consumption process is worse than the +flowtime of the initial random allocation. Even if the simulated flowtime of +the SSI-based allocation is very good, this method +method delays the consumption process in order to first obtain a balanced +allocation and therefore penalises the achieved flowtime. Conversely, the flowtime achieved +by the reallocation methods reallocation methods applied during the consumption process, +whether this is our strategy or whether it is based on PSI auctions, is better than the achieved +flowtime realised from random initial allocation. Furthermore, the +flowtime of the reallocation methods is bounded by the +the simulated flowtime of the reallocation (if an oracle calculates the +reallocation in constant time). These methods improve the flowtime +by reallocating, during the consumption process, non-local tasks whose delegation reduces the cost. +As the number of delegations in strategy is greater than the number of delegations in the PSI-based +reallocation method, the performance improvement rate of our strategy is better (between 13% and 23%) +than the performance the performance improvement rate of the reference method (between 0% and +15%). -This figure shows the medians and standard deviations of our metrics as a function of the number of tasks. -We observe that the real flowtime of the reallocation is better than the real flowtime of the initial allocation and -bounded by the simulated flowtime of the reallocation (if an oracle calculates the reallocation in constant time). -Our strategy improves the flowtime by continuously reallocating during the consumption process by delegating -the non-local tasks whose delegation reduces the cost. + To run the experiment: @@ -184,38 +168,16 @@ To generate the figures in 'experiments/consumer/figures/' : cd experiments/consumer/ cat consumption.plot| gnuplot -In the next experiment, we consider: -- m ∈ [8;16] nodes; -- n = 120 tasks. - - - -This figure shows that the real flowtime of the reallocation remains better than the real flowtime of the -initial allocation. Whatever the number of nodes is, the performance improvement rate is around 33 %. -It is worth noticing that the load-balancing of our reallocation strategy -allows to reduce the flowtime by one third. To reduce the flowtime by a third without it, the number of -nodes must be doubled. - -To run the experiment: - - sbt "run org.smastaplus.experiment."org.smastaplus.experiment.consumer. WithVsWithoutNegotiationByNodesCampaign" - sbt "run org.smastaplus.utils.MergeRuns" - -To generate the figures in 'experiments/consumer/figures/' : - - cd experiments/consumer/ - cat consumption.plot| gnuplot - #### The reallocation strategy does not penalize the consumption -We randomly generate 25 initial stable allocations for distinct STAP problems. +We assume here that the initial allocations are stable, i.e. for which there is no socially rational bilateral reallocation. +In this figure the real flowtime of the reallocation methods is similar to the real flowtime of the initial allocation. +The additional cost of negotiation, be it auctions or bilateral bargaining, is negligible because the negotiation process +is concurrent with the consumption process and, in the case of our strategy, no negotiation is triggered when the agents +believe that the allocation is stable.  -This figure shows that the mean flowtime with negotiation is similar than without negotiation. The -overhead of the negotiation is negligible since no negotiation is triggered when the agents -believe that the allocation is stable. - To run the experiment: sbt "run org.smastaplus.experiment."org.smastaplus.experiment.consumer.WithVsWithoutNegotiationFromStableCampaign" @@ -228,10 +190,15 @@ To generate the figures in 'experiments/consumer/figures/' : ### The reallocation strategy is robust to execution hazards - +We consider here the effective cost of the tasks which simulates the slowdown of half the nodes. +In this figure we see that the mean flowtimes have doubled because of the execution hazards. +The real flowtime and the simulated flowtime of the SSI-based allocation method, which does not take into account the slowdown +of half the nodes, are higher than the same configurations without slowdown. Unlike the PSI-based reallocation method, +the real flowtime of our strategy remains better than the real flowtime of the random initial allocation, despite imperfect +knowledge of the agents' execution environment. Taking into account the actual execution times of the tasks already performed +allows the performance improvement rate to be between 17% and 29%. -This figure shows that the mean flowtime has doubled due to execution hazards. Moreover, the real flowtime of the reallocation -remains better than the real flowtime of the initial allocation despite the imperfect knowledge of the computing environment of the agents. + To run the experiment: diff --git a/experiments/consumer/consumption.plot b/experiments/consumer/consumption.plot index 02f8203f66742c14b9284ed93c009e2f1ba6dfbb..42a75b8770fe8b4b17c6879f4e5cd58c729f2b4d 100644 --- a/experiments/consumer/consumption.plot +++ b/experiments/consumer/consumption.plot @@ -26,12 +26,12 @@ plot "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($1 "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($93/1000/60) with lines dt 1 lc "#000000" title 'C^R(Ae) for SSI',\ "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($131/1000/60):($133/1000/60) with filledcurves fc "#ff6941" fs transparent solid 0.3 border lc "#fc535c" notitle,\ "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($132/1000/60) with lines dt 1 lc "#fc535c" title 'C^R(A0)',\ - "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($17/1000/60):($19/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ - "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($18/1000/60) with lines dt 2 lc "#32a68c" title 'C^S_E(Ae) for bargaining',\ + "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($17/1000/60):($19/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ + "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($18/1000/60) with lines dt 2 lc "#32a68c" title 'C^S_E(Ae) for bargaining',\ "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($95/1000/60):($97/1000/60) with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle,\ - "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_E(Ae) for SSI' -# "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ -# "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_E(Ae) for PSI',\ + "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_E(Ae) for SSI',\ + "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ + "data/consumption4jobs8nodes5staps5allocations040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_E(Ae) for PSI' set output 'figures/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.svg' plot "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($14/1000/60):($16/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ @@ -45,11 +45,11 @@ plot "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" u "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($17/1000/60):($19/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($18/1000/60) with lines dt 2 lc "#32a68c" title 'C^S_E(Ae) for bargaining',\ "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($95/1000/60):($97/1000/60) with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle,\ - "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_E(Ae) for SSI' -# "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ -# "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_E(Ae) for PSI',\ + "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_E(Ae) for SSI',\ +# "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ +# "data/consumption4jobs8nodes5staps5allocationsFromStable040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_E(Ae) for PSI' -#set yrange [0:7] +set yrange [0:7] set output 'figures/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.svg' plot "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($14/1000/60):($16/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($15/1000/60) with lines dt 1 lc "#32a68c" title 'C^R(Ae) for bargaining',\ @@ -62,9 +62,9 @@ plot "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks. "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($17/1000/60):($19/1000/60) with filledcurves fc "#89e0b1" fs transparent solid 0.3 border lc "#32a68c" notitle,\ "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($18/1000/60) with lines dt 2 lc "#32a68c" title 'C^S_H(Ae) for bargaining',\ "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($95/1000/60):($97/1000/60) with filledcurves fc "#2d0505" fs transparent solid 0.3 border lc "#000000" notitle,\ - "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_H(Ae) for SSI' -# "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ -# "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_H(Ae) for PSI',\ + "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($96/1000/60) with lines dt 2 lc "#000000" title 'C^S_H(Ae) for SSI',\ + "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($56/1000/60):($58/1000/60) with filledcurves fc "#5862ed" fs transparent solid 0.3 border lc "#5862ed" notitle,\ + "data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv" using 3:($57/1000/60) with lines dt 2 lc "#5862ed" title 'C^S_H(Ae) for PSI' #set yrange [0:1.5] diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv new file mode 100644 index 0000000000000000000000000000000000000000..69a61ce8016d9433ffdbc726592e4f2afbf8b55f --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv @@ -0,0 +1,9 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatioOpen,InitialLocalAvailabilityRatioMean,InitialLocalAvailabilityRatioClose,InitialGlobalFlowtimeOpen,InitialGlobalFlowtimeMean,InitialGlobalFlowtimeClose,InitialSimulatedFlowtimeOpen,InitialSimulatedFlowtimeMean,InitialSimulatedFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTimeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioMean,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatioClose,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDealsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegationsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwapsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsMean,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeoutsClose,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSizeClose,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksMean,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasksClose,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesMean,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStagesClose,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeOpen,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeMean,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtimeClose,PSI00MeanRealFlowtimeOpen,PSI00MeanRealFlowtimeMean,PSI00MeanRealFlowtimeClose,PSI01MeanGlobalFlowtimeOpen,PSI01MeanGlobalFlowtimeMean,PSI01MeanGlobalFlowtimeClose,PSI02SolvingTimeOpen,PSI02SolvingTimeMean,PSI02SolvingTimeClose,PSI03LocalRatioOpen,PSI03LocalRatioMean,PSI03LocalRatioClose,PSI04NbDealsOpen,PSI04NbDealsMean,PSI04NbDealsClose,PSI05NbDelegationsOpen,PSI05NbDelegationsMean,PSI05NbDelegationsClose,PSI06NbSwapsOpen,PSI06NbSwapsMean,PSI06NbSwapsClose,PSI07NbTimeoutsOpen,PSI07NbTimeoutsMean,PSI07NbTimeoutsClose,PSI08EndowmentSizeOpen,PSI08EndowmentSizeMean,PSI08EndowmentSizeClose,PSI09NbDelegatedTasksOpen,PSI09NbDelegatedTasksMean,PSI09NbDelegatedTasksClose,PSI10NbFirstStagesOpen,PSI10NbFirstStagesMean,PSI10NbFirstStagesClose,PSI11NbSecondStagesOpen,PSI11NbSecondStagesMean,PSI11NbSecondStagesClose,PSI12MeanSimulatedFlowtimeOpen,PSI12MeanSimulatedFlowtimeMean,PSI12MeanSimulatedFlowtimeClose,SSI00MeanRealFlowtimeOpen,SSI00MeanRealFlowtimeMean,SSI00MeanRealFlowtimeClose,SSI01MeanGlobalFlowtimeOpen,SSI01MeanGlobalFlowtimeMean,SSI01MeanGlobalFlowtimeClose,SSI02SolvingTimeOpen,SSI02SolvingTimeMean,SSI02SolvingTimeClose,SSI03LocalRatioOpen,SSI03LocalRatioMean,SSI03LocalRatioClose,SSI04NbDealsOpen,SSI04NbDealsMean,SSI04NbDealsClose,SSI05NbDelegationsOpen,SSI05NbDelegationsMean,SSI05NbDelegationsClose,SSI06NbSwapsOpen,SSI06NbSwapsMean,SSI06NbSwapsClose,SSI07NbTimeoutsOpen,SSI07NbTimeoutsMean,SSI07NbTimeoutsClose,SSI08EndowmentSizeOpen,SSI08EndowmentSizeMean,SSI08EndowmentSizeClose,SSI09NbDelegatedTasksOpen,SSI09NbDelegatedTasksMean,SSI09NbDelegatedTasksClose,SSI10NbFirstStagesOpen,SSI10NbFirstStagesMean,SSI10NbFirstStagesClose,SSI11NbSecondStagesOpen,SSI11NbSecondStagesMean,SSI11NbSecondStagesClose,SSI12MeanSimulatedFlowtimeOpen,SSI12MeanSimulatedFlowtimeMean,SSI12MeanSimulatedFlowtimeClose,Consumer00MeanRealFlowtimeOpen,Consumer00MeanRealFlowtimeMean,Consumer00MeanRealFlowtimeClose,Consumer01MeanGlobalFlowtimeOpen,Consumer01MeanGlobalFlowtimeMean,Consumer01MeanGlobalFlowtimeClose,Consumer02SolvingTimeOpen,Consumer02SolvingTimeMean,Consumer02SolvingTimeClose,Consumer03LocalRatioOpen,Consumer03LocalRatioMean,Consumer03LocalRatioClose,Consumer04NbDealsOpen,Consumer04NbDealsMean,Consumer04NbDealsClose,Consumer05NbDelegationsOpen,Consumer05NbDelegationsMean,Consumer05NbDelegationsClose,Consumer06NbSwapsOpen,Consumer06NbSwapsMean,Consumer06NbSwapsClose,Consumer07NbTimeoutsOpen,Consumer07NbTimeoutsMean,Consumer07NbTimeoutsClose,Consumer08EndowmentSizeOpen,Consumer08EndowmentSizeMean,Consumer08EndowmentSizeClose,Consumer09NbDelegatedTasksOpen,Consumer09NbDelegatedTasksMean,Consumer09NbDelegatedTasksClose,Consumer10NbFirstStagesOpen,Consumer10NbFirstStagesMean,Consumer10NbFirstStagesClose,Consumer11NbSecondStagesOpen,Consumer11NbSecondStagesMean,Consumer11NbSecondStagesClose,Consumer12MeanSimulatedFlowtimeOpen,Consumer12MeanSimulatedFlowtimeMean,Consumer12MeanSimulatedFlowtimeClose +8,4,40,Uncorrelated,0.35249089705395564,0.3761309352375088,0.4006744455478318,25271.25,26806.75,28890.75,27063.5,28890.75,30940.75,34170.25,35696.25,37481.0,20114.25,20754.25,21489.25,4.3857309154E10,4.9969049401E10,5.4108904195E10,0.3962963327009839,0.4132489913831748,0.43575182058920886,50.0,76.0,122.0,50.0,76.0,122.0,0.0,0.0,0.0,13.0,212.0,840.0,1.2,1.2932330827067668,1.5,60.0,108.0,172.0,1.0,1.0,1.0,0.0,0.0,0.0,30985.75,33224.0,34687.0,30088.5,31870.5,33659.75,23627.5,25785.75,26513.5,3.5674736047E10,3.6714713072E10,4.0802574618E10,0.3684543918918919,0.38891261383837683,0.4125834258922516,13.0,16.0,19.0,13.0,16.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27068.5,28325.5,30223.5,30338.0,31247.0,32032.0,17652.5,18557.0,19843.5,3.7693792564E10,4.1302982699E10,4.2695044225E10,0.5551097972972973,0.5702644817452807,0.5782543032108574,40.0,40.0,40.0,40.0,40.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,40.0,40.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,27235.0,27347.0,28537.75,41044.5,43586.5,46139.0,22929.25,24749.25,26696.5,5.4058574217E10,6.0175804563E10,6.5279115818E10,0.35249089705395564,0.3761309352375088,0.4006744455478318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37251.75,39815.0,43062.5 +8,4,80,Uncorrelated,0.3502680683812867,0.36781289569729625,0.3802059502449708,47952.0,50858.5,53680.75,50403.75,53491.75,58381.0,63732.5,68105.75,73696.5,39014.0,39844.75,41945.75,8.3672609515E10,8.975068154E10,1.03010674825E11,0.42583272069219025,0.442814438945967,0.45238492370367,273.0,504.0,653.0,273.0,504.0,653.0,0.0,0.0,0.0,310.0,1957.0,3424.0,1.3796610169491526,1.4835164835164836,1.6887052341597797,405.0,773.0,1028.0,1.0,1.0,1.0,0.0,0.0,0.0,58321.75,62613.0,67791.0,62215.25,65282.0,68081.0,45115.75,46958.75,49301.25,7.7521215115E10,8.058761364E10,8.8739075625E10,0.36620329089376463,0.37633870837374717,0.3888669980601358,21.0,23.0,25.0,21.0,23.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55846.0,59798.25,62115.75,73302.75,75974.5,79297.25,34916.5,36392.5,37974.5,8.9126064208E10,9.6886479483E10,9.9433854732E10,0.5627281078531171,0.5724861577375291,0.5825145004960696,80.0,80.0,80.0,80.0,80.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,80.0,80.0,80.0,0.0,0.0,0.0,0.0,0.0,0.0,55511.5,57584.75,63635.5,80584.0,87466.0,93316.0,45567.5,47648.75,49420.75,1.05049490292E11,1.12205940859E11,1.24440299514E11,0.3502680683812867,0.36781289569729625,0.3802059502449708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73670.5,80100.75,85706.5 +8,4,120,Uncorrelated,0.35547698013385887,0.36403186315839176,0.3789489071464879,71835.25,75172.25,80932.5,74135.75,78196.75,84074.25,99698.25,103242.0,108847.75,56471.5,59217.0,61048.25,1.32605460944E11,1.36683999326E11,1.48891913496E11,0.4215438933492056,0.4330838711392624,0.4476993107739758,344.0,547.0,965.0,344.0,547.0,965.0,0.0,0.0,0.0,244.0,1486.0,8463.0,1.4190476190476191,1.57679180887372,1.82996632996633,534.0,846.0,1531.0,1.0,1.0,1.0,0.0,0.0,0.0,89367.0,95208.5,99214.75,92057.5,98939.5,104036.0,67070.0,69256.25,70966.75,1.18320875376E11,1.23417141733E11,1.31587541208E11,0.3733330284161075,0.3810391823980196,0.39253740271306753,35.0,38.0,43.0,35.0,38.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84526.5,90885.25,93272.5,136502.0,143503.25,144633.75,49785.25,52210.25,53459.0,1.59032187337E11,1.64782075563E11,1.7385244578E11,0.5733924872751508,0.575367048392564,0.5910322276113532,120.0,120.0,120.0,120.0,120.0,120.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,120.0,120.0,120.0,0.0,0.0,0.0,0.0,0.0,0.0,84082.5,84299.0,91689.5,117288.0,132529.0,136932.0,66627.5,69483.5,71583.25,1.56063276366E11,1.67269789429E11,1.81552402181E11,0.35547698013385887,0.36403186315839176,0.3789489071464879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108349.0,121590.5,126180.0 +8,4,160,Uncorrelated,0.3462021093906178,0.3611898662400389,0.3713841439134664,95420.25,103900.0,111343.5,98521.0,106767.5,114552.25,135376.5,139445.0,143051.5,74918.75,77378.0,81951.0,1.70316817918E11,1.80467775099E11,1.83575440653E11,0.4198277560650766,0.4358403722624045,0.4471950024497795,641.0,922.0,1893.0,641.0,922.0,1893.0,0.0,0.0,0.0,754.0,3478.0,10224.0,1.5193798449612403,1.786230745048727,2.1102564102564103,1357.0,1791.0,2691.0,1.0,1.0,1.0,0.0,0.0,0.0,123622.5,126064.25,131810.5,138181.0,144326.25,159749.25,86423.25,91484.0,93851.25,1.75407516592E11,1.88687541611E11,2.0599412532E11,0.3636011758941695,0.374439291608866,0.38915342577271667,27.0,29.0,32.0,27.0,29.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127482.0,132793.5,146339.0,253673.75,255475.0,267417.25,67172.0,67321.0,70915.5,2.77936095507E11,2.87254327586E11,2.95823299414E11,0.5793581577658011,0.5797648821879525,0.5824568579573655,160.0,160.0,160.0,160.0,160.0,160.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,160.0,160.0,160.0,0.0,0.0,0.0,0.0,0.0,0.0,115700.0,118067.5,122929.5,168771.5,172838.25,182040.0,87530.5,93456.75,97513.0,2.09069705939E11,2.26360658426E11,2.45802876581E11,0.3462021093906178,0.3611898662400389,0.3713841439134664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155076.0,160197.5,168392.5 +8,4,200,Uncorrelated,0.348499350990359,0.35896996494947664,0.36446783261210935,118432.75,124816.75,129070.0,119974.0,126656.25,130033.25,171068.25,179482.0,188181.5,92676.75,98048.5,102926.0,2.23370520845E11,2.37642562686E11,2.48868260412E11,0.4192991090910178,0.42590687950219475,0.4346626339794068,1013.0,1569.0,2043.0,1013.0,1569.0,2043.0,0.0,0.0,0.0,1151.0,5514.0,18399.0,1.5345313601127555,1.767391304347826,2.0348454963839577,2036.0,3056.0,4205.0,1.0,1.0,1.0,0.0,0.0,0.0,156643.5,164965.0,172733.0,184106.5,194820.0,204755.75,107969.75,111435.0,118865.25,2.24389840054E11,2.38669604847E11,2.57007252686E11,0.3581038336637004,0.3654380717629078,0.37234335854620426,17.0,21.0,25.0,17.0,21.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169446.0,180102.5,188806.5,422925.75,427261.0,446169.5,80997.25,84693.0,86595.0,4.60731243136E11,4.63646559208E11,4.71706702715E11,0.5706399913692867,0.5810077573443699,0.5855450429154411,200.0,200.0,200.0,200.0,200.0,200.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,200.0,200.0,200.0,0.0,0.0,0.0,0.0,0.0,0.0,135550.5,140447.5,151586.0,199924.25,217231.75,234072.0,108472.0,114127.25,118360.5,2.43777311772E11,2.62125947011E11,2.83526400796E11,0.348499350990359,0.35896996494947664,0.36446783261210935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185139.0,200857.0,215619.0 +8,4,240,Uncorrelated,0.34656597354704566,0.35611220131594135,0.3655373068036072,147364.25,150513.0,159246.75,149950.0,151932.75,159246.75,209582.5,214663.25,222614.0,109902.0,116686.75,121405.5,2.71292181254E11,2.80510927458E11,2.93716686113E11,0.3996702205085193,0.4165373825727843,0.42663919064515426,1193.0,1860.0,2807.0,1193.0,1860.0,2807.0,0.0,0.0,0.0,610.0,4309.0,19296.0,1.5010979358805445,1.71972049689441,2.012275731822474,1654.0,3430.0,4670.0,1.0,1.0,1.0,0.0,0.0,0.0,192922.0,197239.0,204214.5,229495.0,243252.25,263389.0,126963.5,131818.5,136532.25,2.83545951981E11,2.98728933673E11,3.23227226602E11,0.35491664055671907,0.36334481906631677,0.37141373207181194,15.0,16.0,19.0,15.0,16.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211490.5,224390.5,243600.5,720335.75,738608.25,754882.0,97716.25,99254.25,102366.25,7.55028915923E11,7.86040726444E11,8.03021270416E11,0.5648716030100346,0.5693772496162541,0.5869343109561873,240.0,240.0,240.0,240.0,240.0,240.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,240.0,240.0,240.0,0.0,0.0,0.0,0.0,0.0,0.0,175841.5,178179.5,183812.0,246830.5,261571.75,268475.25,130650.75,134147.0,138518.25,3.09045253916E11,3.20201146674E11,3.36589710634E11,0.34656597354704566,0.35611220131594135,0.3655373068036072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,226461.0,240887.5,247314.0 +8,4,280,Uncorrelated,0.33888385071503313,0.345457970003488,0.35105340906966004,166963.25,169945.5,175171.5,168641.5,173148.5,178136.0,243136.5,251709.5,262881.25,129445.25,134449.75,142089.25,3.16156984842E11,3.27361739353E11,3.4571016618E11,0.39836139036862955,0.40329450144486845,0.4141974189047785,1544.0,2847.0,3902.0,1544.0,2847.0,3902.0,0.0,0.0,0.0,2028.0,12280.0,34874.0,1.6,1.8480154888673765,2.092793367346939,3185.0,5000.0,6770.0,1.0,1.0,1.0,0.0,0.0,0.0,222852.0,231052.5,242063.0,278681.25,295530.5,305737.5,150005.0,151960.25,154105.25,3.46021831279E11,3.7022215631E11,3.91608081024E11,0.34650600062176673,0.3535208546890444,0.36000598372599135,10.0,14.0,16.0,10.0,14.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,257158.0,271640.0,283135.5,1196468.25,1210418.75,1245339.25,109258.25,110285.75,113598.0,1.254463424709E12,1.260662823681E12,1.288713919523E12,0.5566292291594,0.5712789782787869,0.571787550625993,280.0,280.0,280.0,280.0,280.0,280.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,280.0,280.0,280.0,0.0,0.0,0.0,0.0,0.0,0.0,195268.5,211539.0,217155.0,288403.75,305474.75,321759.5,151773.0,156246.0,162067.0,3.51839815378E11,3.66167085188E11,3.85497969906E11,0.33888385071503313,0.345457970003488,0.35105340906966004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,266370.5,282605.0,296116.5 +8,4,320,Uncorrelated,0.34193500233245216,0.34659000559682573,0.355877200216929,184986.5,187754.25,193859.25,186350.5,190821.75,195721.0,279957.0,289334.0,294216.75,148938.0,158119.0,167162.75,3.43633592904E11,3.7118044545E11,3.88589575824E11,0.384929996393499,0.39428698068156065,0.4051798036143163,1715.0,3158.0,4388.0,1715.0,3158.0,4388.0,0.0,0.0,0.0,1980.0,8145.0,54402.0,1.8888888888888888,2.0795454545454546,2.3284153005464483,3247.0,6263.0,8922.0,1.0,1.0,1.0,0.0,0.0,0.0,254925.5,261264.5,268935.0,315184.5,329969.0,351621.25,166055.5,174117.0,176315.25,3.8613256222E11,4.07748609578E11,4.26283307556E11,0.34442084635142317,0.35161934380345206,0.36015829815735345,10.0,11.0,13.0,10.0,11.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,293056.5,304960.0,323103.0,1858990.0,1870707.0,1879739.0,130272.5,131949.5,135412.25,1.899398009484E12,1.917163314105E12,1.930639893575E12,0.561089916072656,0.5645619186233658,0.5653311040634192,320.0,320.0,320.0,320.0,320.0,320.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,320.0,320.0,320.0,0.0,0.0,0.0,0.0,0.0,0.0,231358.5,236364.0,237372.25,316461.5,338893.0,347297.5,167082.75,173750.5,179670.25,3.82448642831E11,3.95746424867E11,4.30427850181E11,0.34193500233245216,0.34659000559682573,0.355877200216929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292061.0,312473.5,321424.0 diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-120.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-120.csv new file mode 100644 index 0000000000000000000000000000000000000000..d5237cd22eb0d02d3b7e432dd7ae7a2aa6c713dd --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-120.csv @@ -0,0 +1,25 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,120,Uncorrelated,0.35779952650429314,66898.75,69891.25,93803.5,60256.25,1.31559611863E11,0.40567520352895947,547.0,547.0,0.0,117.0,1.352833638025594,740.0,1.0,0.0,85728.25,101478.75,68603.75,1.23398588189E11,0.3801691634234684,56.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,92843.5,136502.0,49785.25,1.64782075563E11,0.5343419286518862,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84082.5,112443.0,60478.0,1.47880684892E11,0.35779952650429314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102787.0, +8,4,120,Uncorrelated,0.32106651198240915,75617.5,78625.25,116020.0,57754.5,1.48891913496E11,0.37521162290316273,386.0,386.0,0.0,15.0,1.8005181347150259,695.0,1.0,0.0,102203.0,107847.0,68096.5,1.28494080531E11,0.33681260496833243,52.0,52.0,0.0,0.0,0.0,0.0,0.0,0.0,99976.0,136802.0,49785.25,1.65112214017E11,0.5343419286518862,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84082.5,132829.5,66627.5,1.85597124893E11,0.32106651198240915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123082.0, +8,4,120,Uncorrelated,0.3754814210267168,71835.25,72741.25,102998.75,55370.25,1.38689151847E11,0.4169561375700632,879.0,879.0,0.0,20608.0,1.57679180887372,1386.0,1.0,0.0,88934.5,93834.5,65536.25,1.1219467606E11,0.39009773437025747,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,85625.0,136470.5,49785.25,1.64762861096E11,0.5343419286518862,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84082.5,100706.0,63372.5,1.37668451342E11,0.3754814210267168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91994.25, +8,4,120,Uncorrelated,0.3496617406025941,79813.25,84074.25,96360.75,58805.25,1.61112993505E11,0.4312183408764392,965.0,965.0,0.0,26268.0,1.4632124352331606,1412.0,1.0,0.0,87675.0,101741.0,73836.0,1.24423669059E11,0.3751205660364632,37.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,91867.25,137067.5,49785.25,1.65372083473E11,0.5343419286518862,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84082.5,142007.25,67721.75,1.88668501231E11,0.3496617406025941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131232.5, +8,4,120,Uncorrelated,0.36403186315839176,79322.25,79322.25,104023.25,61048.25,1.34621177143E11,0.426739692025442,91.0,91.0,0.0,719.0,1.1428571428571428,104.0,1.0,0.0,94693.5,91267.75,69692.0,1.162557582E11,0.3866308284825879,35.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,82224.75,136204.25,49785.25,1.64511417573E11,0.5343419286518862,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84082.5,106296.5,64959.5,1.48856569693E11,0.36403186315839176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96945.5, +8,4,120,Uncorrelated,0.3756755294324538,67915.25,69706.0,100466.5,62056.0,1.25460407473E11,0.4476993107739758,234.0,234.0,0.0,6.0,1.7179487179487178,402.0,1.0,0.0,91747.5,92057.5,61609.25,1.15263928602E11,0.4017836006141484,44.0,44.0,0.0,0.0,0.0,0.0,0.0,0.0,84870.0,144523.5,53459.0,1.69252889216E11,0.5869243204123181,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91385.0,111660.5,65721.5,1.509285072E11,0.3756755294324538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102740.0, +8,4,120,Uncorrelated,0.3821044728672208,70571.5,73788.75,94096.5,57544.5,1.36683999326E11,0.4215438933492056,602.0,602.0,0.0,2714.0,1.2890365448504983,776.0,1.0,0.0,86158.25,100466.25,80652.75,1.19345265612E11,0.3810391823980196,35.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,91599.75,144408.5,53459.0,1.69113301181E11,0.5869243204123181,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91385.0,130510.0,63398.5,1.68227413578E11,0.3821044728672208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121590.5, +8,4,120,Uncorrelated,0.3682300467235376,71874.25,74135.75,102271.75,51414.5,1.30604426461E11,0.45000991934546003,1079.0,1079.0,0.0,7668.0,1.4263206672845228,1539.0,1.0,0.0,93668.0,87978.75,70966.75,1.20365287191E11,0.39011417508670876,42.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,79639.25,144003.25,49162.5,1.62359031788E11,0.5910322276113532,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,80941.0,132529.0,62785.75,1.5700623185E11,0.3682300467235376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122478.5, +8,4,120,Uncorrelated,0.3513842617612653,88239.5,91201.25,107345.75,50752.5,1.65232722353E11,0.4238946770739983,1069.0,1069.0,0.0,22338.0,2.028999064546305,2169.0,1.0,0.0,99125.0,85686.0,67070.0,1.43828348182E11,0.3716847153147853,35.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,78353.0,132974.5,49162.5,1.51338836895E11,0.5910322276113532,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,80941.0,136932.0,70408.25,2.19297421429E11,0.3513842617612653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126180.0, +8,4,120,Uncorrelated,0.33784948590426805,75172.25,78196.75,98433.5,57674.25,1.4790159944E11,0.4102162417310284,1188.0,1188.0,0.0,1285.0,1.82996632996633,2174.0,1.0,0.0,89367.0,106326.0,70536.5,1.45817516035E11,0.3569972431060549,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,95164.25,139173.5,49162.5,1.57536430486E11,0.5910322276113532,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,80941.0,143308.5,70899.25,1.75441622219E11,0.33784948590426805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132361.5, +8,4,120,Uncorrelated,0.3987850512043454,72895.75,75400.5,100717.5,56430.25,1.25455821378E11,0.47128178466127146,910.0,910.0,0.0,8463.0,1.6824175824175824,1531.0,1.0,0.0,90218.5,101488.0,67879.0,1.18320875376E11,0.3798048967361933,40.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,91246.75,159613.75,49162.5,1.77981338494E11,0.5910322276113532,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,80941.0,120617.75,70347.5,1.71358291905E11,0.3987850512043454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110045.25, +8,4,120,Uncorrelated,0.39928771000760793,72618.25,74394.5,109155.75,64194.25,1.29577632368E11,0.44239055684200385,866.0,866.0,0.0,244.0,1.7551963048498844,1520.0,1.0,0.0,98625.0,97412.75,70312.5,1.31587541208E11,0.4267693462812416,46.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,86946.25,134074.75,52210.25,1.54733835714E11,0.5966558250637041,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84299.0,132583.5,67947.25,1.67249747131E11,0.39928771000760793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120967.0, +8,4,120,Uncorrelated,0.3789489071464879,71810.5,75091.75,103242.0,59217.0,1.36645150032E11,0.46085561177537615,1103.0,1103.0,0.0,6355.0,1.9292837715321849,2128.0,1.0,0.0,95208.5,126966.25,69880.5,1.49931349205E11,0.37056023069690797,39.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,117969.5,133130.75,52210.25,1.53786787211E11,0.5966558250637041,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84299.0,126482.5,71040.25,1.56063276366E11,0.3789489071464879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116459.25, +8,4,120,Uncorrelated,0.3667529343756333,87216.0,91393.5,112676.5,56266.0,1.36645481374E11,0.4198324922508563,285.0,285.0,0.0,28.0,1.2912280701754386,368.0,1.0,0.0,104212.0,113723.0,76755.75,1.76439626511E11,0.38855684864834333,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,103653.25,155737.5,52210.25,1.76394620659E11,0.5966558250637041,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84299.0,134128.5,67492.0,2.05020622403E11,0.3667529343756333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123978.0, +8,4,120,Uncorrelated,0.3850718103926565,69547.5,69547.5,112187.75,62999.75,1.82572773674E11,0.4581047903495337,469.0,469.0,0.0,12663.0,1.8997867803837953,891.0,1.0,0.0,102469.0,98939.5,66827.75,1.13213655005E11,0.4167660572556237,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,88296.75,150170.0,52210.25,1.70824865504E11,0.5966558250637041,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84299.0,107101.0,72120.25,1.32608362496E11,0.3850718103926565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96467.75, +8,4,120,Uncorrelated,0.35181942917133163,73789.75,77383.0,101975.5,59806.25,1.3462578385E11,0.4449951993514972,1423.0,1423.0,0.0,12403.0,1.3865073787772313,1973.0,1.0,0.0,95470.0,86922.75,71029.0,9.9927138592E10,0.3752844674934635,46.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,79134.5,133728.25,52210.25,1.54385377127E11,0.5966558250637041,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,84299.0,133865.0,71583.25,1.81552402181E11,0.35181942917133163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124568.5, +8,4,120,Uncorrelated,0.3318954917351801,80932.5,81570.0,104526.0,60822.5,1.39718352247E11,0.43199385871046214,489.0,489.0,0.0,1097.0,2.098159509202454,1026.0,1.0,0.0,96553.5,99698.0,70834.75,1.25455983327E11,0.3593551645985232,40.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,90885.25,160220.5,54589.75,1.76032903533E11,0.575367048392564,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91689.5,135403.0,72732.25,1.57080302763E11,0.3318954917351801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124944.5, +8,4,120,Uncorrelated,0.36776288241823246,75561.75,76684.75,107357.75,54479.25,1.32605460944E11,0.4330838711392624,169.0,169.0,0.0,1094.0,2.088757396449704,353.0,1.0,0.0,99167.5,89242.0,69256.25,1.19326076102E11,0.39041719561070604,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,81344.75,144633.75,54589.75,1.60445126102E11,0.575367048392564,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91689.5,116172.75,66708.25,1.56939710112E11,0.36776288241823246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108349.0, +8,4,120,Uncorrelated,0.383481659211602,74619.75,78790.0,99698.25,56471.5,1.4787537941E11,0.45197298896030097,344.0,344.0,0.0,8436.0,1.552325581395349,534.0,1.0,0.0,91441.5,104036.0,68143.25,1.25457334406E11,0.39808051469855177,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,93272.5,143503.25,54589.75,1.5930520413E11,0.575367048392564,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91689.5,152222.0,70335.25,1.76449506635E11,0.383481659211602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140670.5, +8,4,120,Uncorrelated,0.35918235775005486,94255.25,94255.25,96896.0,60623.5,1.33618251001E11,0.4249353635922556,324.0,324.0,0.0,1486.0,1.6388888888888888,531.0,1.0,0.0,89052.5,90263.0,61458.5,1.1831546026E11,0.39253740271306753,36.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,83008.0,143220.0,54589.75,1.59032187337E11,0.575367048392564,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91689.5,117552.0,74744.5,1.41778481992E11,0.35918235775005486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106411.0, +8,4,120,Uncorrelated,0.35547698013385887,75938.25,78962.25,113731.5,57024.75,1.70343709115E11,0.4181593412071223,210.0,210.0,0.0,1556.0,1.4190476190476191,298.0,1.0,0.0,106067.5,105313.5,64709.5,1.38719712927E11,0.37926450746724977,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,95320.5,142879.5,54589.75,1.58694115244E11,0.575367048392564,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,91689.5,142001.75,69483.5,1.71328773638E11,0.35547698013385887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132062.5, +8,4,120,Uncorrelated,0.3612354374799898,67470.5,70928.0,108847.75,65072.0,1.59081292636E11,0.43507876665338097,465.0,465.0,0.0,33.0,1.5440860215053764,718.0,1.0,0.0,99944.25,92566.75,67827.0,1.21383815311E11,0.37063124399694214,33.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,84526.5,145647.0,53039.75,1.75484158618E11,0.5733924872751508,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,93008.5,130047.0,68278.75,1.6013980277E11,0.3612354374799898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119565.0, +8,4,120,Uncorrelated,0.36213385430619355,91009.0,91009.0,95354.0,66019.75,1.21366334529E11,0.43991061569321843,440.0,440.0,0.0,614.0,1.5340909090909092,675.0,1.0,0.0,88490.0,98680.75,74717.5,1.23417141733E11,0.3733330284161075,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,91489.0,144278.5,53039.75,1.74113466803E11,0.5733924872751508,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,93008.5,117288.0,73678.0,1.67269789429E11,0.36213385430619355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109658.5, +8,4,120,Uncorrelated,0.35697857520892273,89712.0,93268.75,108621.5,60994.5,1.40746793307E11,0.4450528269093808,607.0,607.0,0.0,225.0,1.3937397034596375,846.0,1.0,0.0,99214.75,97145.75,67065.75,1.2952546873E11,0.3943037106248407,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,87712.25,144033.0,53039.75,1.7385244578E11,0.5733924872751508,120.0,120.0,0.0,0.0,1.0,120.0,0.0,0.0,93008.5,149918.5,74468.25,2.16208628068E11,0.35697857520892273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139210.0, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-160.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-160.csv new file mode 100644 index 0000000000000000000000000000000000000000..5f6722ac89687cee15ad1c7dd7758cf734377383 --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-160.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,160,Uncorrelated,0.3383972539907357,94294.0,94936.5,152725.5,78561.0,2.18241031047E11,0.39203969818092005,772.0,772.0,0.0,91.0,2.126943005181347,1642.0,1.0,0.0,141173.0,145064.0,87686.75,1.8459180732E11,0.36076150345015295,28.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,133667.0,250097.0,66371.25,2.74579822026E11,0.5796887049703372,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,109068.25,142536.5,86684.75,1.82576811322E11,0.3383972539907357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130974.25, +8,4,160,Uncorrelated,0.3572584262866878,93689.0,96639.25,136148.25,71533.25,1.87653755334E11,0.4322217573854443,854.0,854.0,0.0,862.0,1.588992974238876,1357.0,1.0,0.0,123846.5,139721.75,91484.0,1.75418756879E11,0.3692545754220074,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,129692.5,249676.25,66332.0,2.84606364324E11,0.5859413196772129,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,110395.5,172323.75,90221.0,2.18201103777E11,0.3572584262866878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158910.0, +8,4,160,Uncorrelated,0.389295201036306,94150.25,98521.0,130256.5,76789.0,1.82514462648E11,0.42087581969485427,720.0,720.0,0.0,13023.0,2.558333333333333,1842.0,1.0,0.0,119155.5,141754.25,86880.25,1.71327019155E11,0.4087007364022641,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,128776.0,250488.75,66371.25,2.74975167762E11,0.5796887049703372,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,109068.25,175395.0,84446.0,2.22311931267E11,0.389295201036306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162641.5, +8,4,160,Uncorrelated,0.3713841439134664,116981.75,120990.5,126227.25,68313.75,1.97885211372E11,0.443461846701311,780.0,780.0,0.0,3478.0,2.1102564102564103,1646.0,1.0,0.0,115699.5,163689.0,84466.75,1.95816415365E11,0.38190345620145466,22.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,151211.0,250884.75,66371.25,2.75366119414E11,0.5796887049703372,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,109068.25,204474.0,94232.0,2.75361698522E11,0.3713841439134664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188464.0, +8,4,160,Uncorrelated,0.32235618482134304,101159.5,104171.5,144545.75,83842.0,1.77421186043E11,0.41049259817436756,2084.0,2084.0,0.0,9023.0,1.6972168905950096,3537.0,1.0,0.0,131870.5,142005.75,92157.0,1.96829993669E11,0.3548717974566148,32.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,130150.5,251406.25,66371.25,2.75885620529E11,0.5796887049703372,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,109068.25,192999.0,97161.25,2.45802876581E11,0.32235618482134304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,177586.0, +8,4,160,Uncorrelated,0.33926268821253897,99377.25,101421.25,139445.0,88139.5,1.83508801243E11,0.4198277560650766,903.0,903.0,0.0,49832.0,1.5193798449612403,1372.0,1.0,0.0,126064.25,142230.75,89953.5,1.79455206801E11,0.3633533943727662,36.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,132532.5,255339.75,67321.0,2.87466805084E11,0.5824568579573655,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,115700.0,171559.75,91732.0,2.17192108337E11,0.33926268821253897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160197.5, +8,4,160,Uncorrelated,0.34120560777965947,103211.25,107211.5,133074.75,81951.0,1.70316817918E11,0.4120959837183839,1054.0,1054.0,0.0,13590.0,2.1793168880455407,2297.0,1.0,0.0,123622.5,137684.0,87008.75,2.03979948611E11,0.360978992026298,37.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,125760.0,255211.25,67321.0,2.87346324004E11,0.5824568579573655,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,115700.0,176183.25,92185.0,2.33561762769E11,0.34120560777965947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163445.5, +8,4,160,Uncorrelated,0.3886238193458921,103818.0,108168.0,144821.75,70768.25,2.17214678031E11,0.43659073733672865,288.0,288.0,0.0,189.0,1.3854166666666667,399.0,1.0,0.0,133013.5,135377.75,98121.25,1.75407516592E11,0.3897736087174486,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,122251.0,255063.0,67321.0,2.87196129056E11,0.5824568579573655,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,115700.0,176169.0,84700.0,2.41701830073E11,0.3886238193458921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162011.0, +8,4,160,Uncorrelated,0.3617322163000726,106767.5,106767.5,136149.25,76332.75,1.69296874059E11,0.46957048757554065,2421.0,2421.0,0.0,400.0,1.7897562990499793,4333.0,1.0,0.0,125725.5,161914.75,84574.25,1.88687541611E11,0.3764999014822556,34.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,149883.5,255130.0,67321.0,2.87254327586E11,0.5824568579573655,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,115700.0,164698.5,94274.25,1.94791090098E11,0.3617322163000726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,153245.5, +8,4,160,Uncorrelated,0.3733373571804471,111343.5,114552.25,149648.75,88651.5,1.81505006446E11,0.4073621437461185,629.0,629.0,0.0,47633.0,2.8473767885532593,1791.0,1.0,0.0,137036.5,164461.5,94550.75,2.22328024637E11,0.39499130799141025,28.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,150494.0,257323.25,67321.0,2.89456510279E11,0.5824568579573655,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,115700.0,190429.0,100459.5,2.59991163301E11,0.3733373571804471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,177147.0, +8,4,160,Uncorrelated,0.361891229789319,104338.25,106694.25,140468.75,83253.0,1.77430269098E11,0.4471950024497795,641.0,641.0,0.0,2584.0,1.889235569422777,1211.0,1.0,0.0,127593.0,170612.0,93366.75,2.27464325556E11,0.39403478686918175,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,156926.0,267417.25,72340.25,2.78644983586E11,0.5842724154826066,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,122929.5,183553.5,98326.0,2.31460790539E11,0.361891229789319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,170159.5, +8,4,160,Uncorrelated,0.39667074963253307,93925.5,98040.25,132069.0,73417.25,1.49906727759E11,0.4420970112689858,28.0,28.0,0.0,52.0,1.6785714285714286,47.0,1.0,0.0,120930.0,129790.0,86423.25,1.87687030797E11,0.3919549240568349,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,119112.0,265948.75,72585.0,2.77936095507E11,0.5793581577658011,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,123114.0,172838.25,81880.75,2.26360658426E11,0.39667074963253307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159271.0, +8,4,160,Uncorrelated,0.3633219010289074,92409.25,92409.25,140488.25,96646.25,1.69296926913E11,0.4261073003429691,1239.0,1239.0,0.0,3284.0,1.3462469733656175,1668.0,1.0,0.0,128133.0,144060.25,93302.75,1.64197499437E11,0.3636011758941695,27.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,133109.0,244519.75,69122.5,2.97537243172E11,0.5748236158745713,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,102094.75,155266.0,88262.0,1.81560167586E11,0.3633219010289074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143798.5, +8,4,160,Uncorrelated,0.3573689367956884,115561.75,115561.75,145586.75,74918.75,1.96844302975E11,0.44145026947574717,522.0,522.0,0.0,754.0,1.818007662835249,949.0,1.0,0.0,133209.0,155031.5,84008.5,1.99896852157E11,0.3705756981871632,27.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,142481.5,264816.5,72340.25,2.76036043708E11,0.5842724154826066,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,122929.5,146348.75,101508.75,2.13151089496E11,0.3573689367956884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135179.75, +8,4,160,Uncorrelated,0.3408794708476237,103612.25,106625.75,141248.5,79764.25,1.78478797906E11,0.39998040176384125,970.0,970.0,0.0,9480.0,2.170103092783505,2105.0,1.0,0.0,129151.5,167486.75,95710.25,2.11076987045E11,0.36665115139637433,37.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,153621.0,264618.25,72340.25,2.75834557342E11,0.5842724154826066,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,122929.5,182040.0,93456.75,2.28450184808E11,0.3408794708476237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168392.5, +8,4,160,Uncorrelated,0.3462021093906178,116960.5,116960.5,135900.5,78941.25,1.81543649497E11,0.4358403722624045,1714.0,1714.0,0.0,9172.0,1.561260210035006,2676.0,1.0,0.0,124672.5,158854.0,99333.75,1.91765999315E11,0.3444414739240494,38.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,144191.75,274633.5,70915.5,2.95823299414E11,0.571862106837576,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,130053.0,169795.25,97721.25,2.09069705939E11,0.3462021093906178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156030.0, +8,4,160,Uncorrelated,0.3616094761206288,121459.75,121459.75,143051.5,81484.5,1.63195962017E11,0.43101367804215407,387.0,387.0,0.0,104.0,2.193798449612403,849.0,1.0,0.0,131810.5,145351.5,99756.75,1.72383326854E11,0.36997670951441625,26.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,132793.5,276195.25,70915.5,2.973627026E11,0.571862106837576,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,130053.0,181263.0,99863.75,2.32470582704E11,0.3616094761206288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165699.5, +8,4,160,Uncorrelated,0.37516468324217045,95420.25,96943.5,148120.25,77378.0,1.93754689046E11,0.47119036780662393,1902.0,1902.0,0.0,6414.0,1.4915878023133544,2837.0,1.0,0.0,137036.0,137927.5,89348.0,1.87636787058E11,0.38915342577271667,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,126689.25,275544.75,70915.5,2.96712813315E11,0.571862106837576,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,130053.0,144301.5,93249.5,2.12111956145E11,0.37516468324217045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133150.75, +8,4,160,Uncorrelated,0.3499618247987071,132942.5,135987.75,133100.25,77271.5,1.76433324517E11,0.44213145275307025,1349.0,1349.0,0.0,19049.0,1.994810971089696,2691.0,1.0,0.0,117203.25,174152.0,95067.75,2.44763895485E11,0.3730909388690988,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,159298.75,277534.0,70915.5,2.9870152794E11,0.571862106837576,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,130053.0,217210.0,118099.25,2.78390056143E11,0.3499618247987071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,199798.75, +8,4,160,Uncorrelated,0.3679704039827453,117389.0,121363.25,129263.0,75428.75,1.83575440653E11,0.4552049538646069,3181.0,3181.0,0.0,10224.0,1.786230745048727,5682.0,1.0,0.0,118559.5,138181.0,93190.25,2.0599412532E11,0.3795433908731162,28.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,127482.0,278095.75,70915.5,2.99273310954E11,0.571862106837576,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,130053.0,194003.25,97513.0,2.69181003541E11,0.3679704039827453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,179888.5, +8,4,160,Uncorrelated,0.3497478710801041,103900.0,103900.0,142052.5,76892.25,1.67339143615E11,0.3934654056845452,922.0,922.0,0.0,24570.0,1.4891540130151844,1373.0,1.0,0.0,127858.0,135933.5,81870.5,1.62208673273E11,0.374439291608866,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,124440.5,330092.75,67172.0,3.61957968055E11,0.5797648821879525,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,118067.5,168771.5,87530.5,2.04986453939E11,0.3497478710801041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155639.0, +8,4,160,Uncorrelated,0.3971511457183649,103948.0,108039.25,139721.0,70279.25,1.82564810898E11,0.45852529896009475,1893.0,1893.0,0.0,5215.0,1.3423137876386688,2541.0,1.0,0.0,129734.5,151978.0,81272.0,2.23381221821E11,0.4064667523972499,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,139302.0,253673.75,67172.0,2.85539620602E11,0.5797648821879525,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,118067.5,169571.75,86886.25,2.47858101336E11,0.3971511457183649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155076.0, +8,4,160,Uncorrelated,0.35651434299658763,104552.0,107665.0,137394.0,80670.25,1.80467775099E11,0.48230541013983536,2455.0,2455.0,0.0,3099.0,1.8839103869653768,4625.0,1.0,0.0,125866.5,159749.25,93346.5,2.41586647069E11,0.3787705424315759,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,146339.0,255291.75,67172.0,2.87164872572E11,0.5797648821879525,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,118067.5,175638.75,93750.75,2.5281480124E11,0.35651434299658763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162802.5, +8,4,160,Uncorrelated,0.3611898662400389,95375.0,96353.75,136910.25,69905.5,1.76403615501E11,0.4341173968954728,162.0,162.0,0.0,540.0,1.462962962962963,237.0,1.0,0.0,125906.0,124934.5,84387.0,1.58075585144E11,0.38613189683978166,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,114860.5,255475.0,67172.0,2.87347589616E11,0.5797648821879525,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,118067.5,123158.25,86490.5,1.8461399146E11,0.3611898662400389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112377.25, +8,4,160,Uncorrelated,0.33432396034791767,107265.0,107474.75,135376.5,85088.25,1.54966876311E11,0.45695329033303295,2937.0,2937.0,0.0,912.0,1.686414708886619,4953.0,1.0,0.0,121476.0,144326.25,93851.25,1.69327318025E11,0.3488947842728258,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,131214.75,257365.0,67172.0,2.89243195127E11,0.5797648821879525,160.0,160.0,0.0,0.0,1.0,160.0,0.0,0.0,118067.5,170322.5,95035.25,2.05992854794E11,0.33432396034791767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155888.5, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-200.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-200.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2a3d2a05f3a5301abf64b8a0b9ad798f6080a64 --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-200.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,200,Uncorrelated,0.3550557930405575,126418.0,129601.5,188181.5,106469.75,2.22370343738E11,0.44216058821551285,2043.0,2043.0,0.0,10593.0,2.058247674987763,4205.0,1.0,0.0,172733.0,209366.5,118865.25,2.91740802428E11,0.36509478190173067,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,192240.5,481234.5,80861.75,5.20750643023E11,0.5855450429154411,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,139453.5,234859.0,119972.25,2.83569200335E11,0.3550557930405575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,216031.0, +8,4,200,Uncorrelated,0.37240791329478623,112435.0,113595.0,203240.0,101558.25,2.74388565415E11,0.41367755361215675,2020.0,2020.0,0.0,1351.0,2.158910891089109,4361.0,1.0,0.0,186428.0,206220.25,119240.5,2.38600961377E11,0.36448947538123433,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,189603.0,425721.0,84040.75,4.62193677092E11,0.5869811623072069,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,138371.5,188444.25,108155.0,2.27463216155E11,0.37240791329478623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173613.5, +8,4,200,Uncorrelated,0.362932690310546,116752.5,119756.25,182308.75,91626.5,2.37642562686E11,0.4212419069924772,905.0,905.0,0.0,8697.0,3.1049723756906076,2810.0,1.0,0.0,168840.0,194820.0,114646.25,2.15223267567E11,0.374247570366883,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,180102.5,423648.5,84040.75,4.60122219707E11,0.5869811623072069,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,138371.5,217958.0,115969.75,2.60021560327E11,0.362932690310546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201785.0, +8,4,200,Uncorrelated,0.37884473492124093,121379.5,125438.75,176714.25,97859.5,2.16242872472E11,0.4244306459174449,1627.0,1627.0,0.0,18399.0,1.7584511370620775,2861.0,1.0,0.0,163178.0,185604.25,111671.5,2.57007252686E11,0.3761861337331785,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,169446.0,424093.5,80997.25,4.63621821489E11,0.5842691517202772,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,139453.5,228228.25,109871.75,2.78466687626E11,0.37884473492124093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211045.0, +8,4,200,Uncorrelated,0.36442815347883106,129070.0,129070.0,180279.5,89169.75,2.48868260412E11,0.44472423936114447,2036.0,2036.0,0.0,4013.0,1.8094302554027506,3684.0,1.0,0.0,164965.0,183342.0,107969.75,2.38669604847E11,0.38253591782073826,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,169049.5,424270.5,84040.75,4.60731243136E11,0.5869811623072069,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,138371.5,191996.5,114127.25,2.47837078996E11,0.36442815347883106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,177113.5, +8,4,200,Uncorrelated,0.35981089749382944,120717.75,122329.25,179482.0,97968.5,2.39662980231E11,0.4182567464166722,3662.0,3662.0,0.0,826.0,1.5090114691425451,5526.0,1.0,0.0,165873.5,174922.75,101266.5,2.24389840054E11,0.36559282310199603,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,162518.0,422925.75,75408.75,4.58868645884E11,0.5862077275767125,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,140447.5,175441.0,100398.75,2.52963925178E11,0.35981089749382944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161100.25, +8,4,200,Uncorrelated,0.3430776553377878,126656.25,126656.25,165227.0,100671.0,2.23370520845E11,0.4346626339794068,1531.0,1531.0,0.0,15787.0,2.140431090790333,3277.0,1.0,0.0,152076.5,183348.75,110621.75,2.0809148385E11,0.34805826510098786,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,167326.25,422497.5,75408.75,4.58456638275E11,0.5862077275767125,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,140447.5,195332.25,117888.25,2.21345722467E11,0.3430776553377878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180966.0, +8,4,200,Uncorrelated,0.3384304250990599,118432.75,118432.75,169298.5,94409.0,2.32529604957E11,0.39194185539763543,745.0,745.0,0.0,3091.0,1.523489932885906,1135.0,1.0,0.0,154170.0,190733.5,108296.75,2.24391364063E11,0.3510767556147338,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,177315.5,416481.0,72544.75,4.57787251954E11,0.582522478014022,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135550.5,199924.25,106422.75,2.23386713577E11,0.3384304250990599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185139.0, +8,4,200,Uncorrelated,0.3751624221026608,111009.75,111631.0,188956.25,92676.75,2.26444697157E11,0.42621568048585046,819.0,819.0,0.0,116.0,1.4957264957264957,1225.0,1.0,0.0,172987.5,187157.0,123586.5,2.06029573649E11,0.38101062195364416,40.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,172942.0,423404.75,75408.75,4.59358369266E11,0.5862077275767125,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,140447.5,205013.5,108472.0,2.31527240179E11,0.3751624221026608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188402.5, +8,4,200,Uncorrelated,0.3502573649762718,121460.25,126312.0,190465.0,99780.25,2.48842880464E11,0.4200561925246671,1501.0,1501.0,0.0,61713.0,1.3564290473017988,2036.0,1.0,0.0,176917.5,204494.5,116294.5,2.46820777164E11,0.3581038336637004,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,188200.5,415193.25,72544.75,4.56497104802E11,0.582522478014022,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135550.5,230758.0,106658.5,2.83526400796E11,0.3502573649762718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,213317.0, +8,4,200,Uncorrelated,0.34531839385310664,120985.0,123686.75,172868.75,103559.75,2.29495049246E11,0.39578795927842547,835.0,835.0,0.0,54659.0,1.5652694610778444,1307.0,1.0,0.0,160520.5,207789.25,105276.5,2.70259732093E11,0.3681799432894886,27.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,192099.5,420554.25,84693.0,4.61359250767E11,0.5810077573443699,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135273.5,235317.75,108925.25,2.68216024025E11,0.34531839385310664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217850.5, +8,4,200,Uncorrelated,0.36795477506092494,136853.25,141986.5,169309.75,91005.75,2.5397112373E11,0.44391218837613855,149.0,149.0,0.0,1151.0,1.8791946308724832,280.0,1.0,0.0,155827.0,184106.5,105561.25,2.61118457221E11,0.37035989056425567,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,169885.0,422860.5,84693.0,4.63646559208E11,0.5810077573443699,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135273.5,230770.25,121635.75,3.1619544059E11,0.36795477506092494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,212110.75, +8,4,200,Uncorrelated,0.34654785223384815,124816.75,127549.5,174618.5,97583.75,2.20201416052E11,0.4192991090910178,2255.0,2255.0,0.0,3780.0,1.921951219512195,4334.0,1.0,0.0,159056.5,202207.25,117768.25,2.32557760998E11,0.3654380717629078,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,184975.5,421536.75,84693.0,4.62339880796E11,0.5810077573443699,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135273.5,235832.75,116739.0,2.7226514148E11,0.34654785223384815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,218954.5, +8,4,200,Uncorrelated,0.35629385051619317,116908.25,119974.0,168803.25,90078.75,2.28471533003E11,0.44474710419709595,619.0,619.0,0.0,460.0,2.027463651050081,1255.0,1.0,0.0,155725.5,202966.0,107857.25,2.58049539701E11,0.36241723074961096,30.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,186705.5,427261.0,84693.0,4.68058657282E11,0.5810077573443699,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135273.5,234072.0,112668.5,2.62125947011E11,0.35629385051619317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,215619.0, +8,4,200,Uncorrelated,0.35896996494947664,137059.0,137059.0,172860.5,102926.0,2.11115969842E11,0.4307707329126208,2838.0,2838.0,0.0,295.0,1.5345313601127555,4355.0,1.0,0.0,159399.0,201133.0,133278.0,2.53936376725E11,0.3559471312969889,22.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,187242.0,430422.75,84693.0,4.71225735109E11,0.5810077573443699,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,135273.5,218504.75,117405.25,2.64145910342E11,0.35896996494947664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202418.5, +8,4,200,Uncorrelated,0.39469530784875473,128023.0,128023.0,163421.5,90713.75,2.28445465003E11,0.4538716341216851,2300.0,2300.0,0.0,67442.0,1.767391304347826,4065.0,1.0,0.0,150057.75,172643.0,120853.75,2.02990753481E11,0.39928636786817384,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,154623.75,446730.5,86595.0,4.63818160568E11,0.5706399913692867,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,161458.0,170327.25,102893.0,2.12117616007E11,0.39469530784875473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,156723.5, +8,4,200,Uncorrelated,0.36446783261210935,125805.25,130033.25,184346.0,112810.25,2.58035072199E11,0.4258937383375488,1521.0,1521.0,0.0,53535.0,2.009204470742932,3056.0,1.0,0.0,167583.0,219805.0,109261.0,2.56018195308E11,0.37404153131230794,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,202550.0,451988.75,86595.0,4.69077760418E11,0.5706399913692867,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,161458.0,251896.75,119438.75,2.8653511387E11,0.36446783261210935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,233160.0, +8,4,200,Uncorrelated,0.36541681151081434,127447.0,128609.25,171068.25,101632.0,2.44710374545E11,0.4679205175231451,1521.0,1521.0,0.0,21671.0,2.0348454963839577,3095.0,1.0,0.0,156643.5,204755.75,113978.0,2.36630492226E11,0.37234335854620426,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,188806.5,446169.5,86595.0,4.63257191204E11,0.5706399913692867,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,161458.0,204745.75,118360.5,2.62117156634E11,0.36541681151081434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188373.5, +8,4,200,Uncorrelated,0.3428710707278968,152171.25,157142.0,155006.75,103305.75,2.39632484305E11,0.42708645497444747,3285.0,3285.0,0.0,5514.0,1.7287671232876711,5679.0,1.0,0.0,142152.0,211103.0,111435.0,2.81478508637E11,0.3586900495067308,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,195621.0,455817.0,86595.0,4.72930090398E11,0.5706399913692867,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,161458.0,246330.5,123041.5,3.46806231137E11,0.3428710707278968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228656.5, +8,4,200,Uncorrelated,0.3628995201163548,129662.25,132005.5,189213.75,92304.75,2.12166899697E11,0.4295198366557584,1723.0,1723.0,0.0,1186.0,1.726639582124202,2975.0,1.0,0.0,175560.5,192768.25,107505.25,2.3865942453E11,0.3643799271983346,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,177999.5,446596.5,86595.0,4.63684070164E11,0.5706399913692867,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,161458.0,202975.0,113384.5,2.90698235775E11,0.3628995201163548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188025.5, +8,4,200,Uncorrelated,0.33701336662604164,116389.75,118665.0,171564.25,103715.0,2.38650519938E11,0.386920721738355,1569.0,1569.0,0.0,6613.0,1.4346717654557042,2251.0,1.0,0.0,157405.5,167758.0,108829.5,2.1824140927E11,0.34685651437234327,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,153992.5,439268.25,87718.75,4.74446284664E11,0.5497795348929382,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,151586.0,213407.25,113207.0,2.43777311772E11,0.33701336662604164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196546.0, +8,4,200,Uncorrelated,0.34901261357668717,119412.75,124250.75,182051.5,98048.5,2.16237428362E11,0.4283542899041844,1013.0,1013.0,0.0,86.0,2.43928923988154,2471.0,1.0,0.0,167335.5,184091.0,107998.5,2.51908656167E11,0.35549478315151156,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,167824.75,440073.5,87718.75,4.75266271571E11,0.5497795348929382,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,151586.0,213391.0,117163.5,2.72257123253E11,0.34901261357668717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194345.75, +8,4,200,Uncorrelated,0.3602984453494248,135350.75,139014.75,189420.0,105236.75,2.69183818219E11,0.42056815592085056,2490.0,2490.0,0.0,168.0,1.5835341365461848,3943.0,1.0,0.0,174162.5,263880.5,123522.0,2.9779760286E11,0.3511409688574458,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,242566.5,447878.5,87718.75,4.8305904012E11,0.5497795348929382,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,151586.0,274893.0,126401.25,3.19266228724E11,0.3602984453494248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,252802.5, +8,4,200,Uncorrelated,0.348499350990359,133353.0,133353.0,181018.0,93645.75,2.83523823746E11,0.42590687950219475,1767.0,1767.0,0.0,16165.0,2.4057724957555178,4251.0,1.0,0.0,166011.0,191991.5,119392.25,2.2232398001E11,0.36973137936842937,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,175175.25,436685.5,87718.75,4.71866176682E11,0.5497795348929382,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,151586.0,184366.25,119694.5,2.37664416345E11,0.348499350990359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165911.0, +8,4,200,Uncorrelated,0.35640636921217167,112798.25,116752.0,197344.75,102539.75,2.53945404717E11,0.38371828027307947,1323.0,1323.0,0.0,22803.0,1.309145880574452,1732.0,1.0,0.0,182376.0,197611.0,105095.5,2.40688501474E11,0.36875439691646106,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,182069.0,436514.0,87718.75,4.71706702715E11,0.5497795348929382,200.0,200.0,0.0,0.0,1.0,200.0,0.0,0.0,151586.0,217231.75,105462.5,2.53944012314E11,0.35640636921217167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200857.0, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-240.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-240.csv new file mode 100644 index 0000000000000000000000000000000000000000..c687ffd7108b612f27e7dd1f3f616ebee59d338a --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-240.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,240,Uncorrelated,0.37377502965214254,143416.25,147589.75,214663.25,105311.75,2.71265498419E11,0.4423334447887919,3679.0,3679.0,0.0,8692.0,1.8374558303886925,6760.0,1.0,0.0,196704.5,248357.25,136532.25,3.10070932511E11,0.3827846231391513,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,229630.5,761736.75,99254.25,8.03021270416E11,0.5890720418140957,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,183812.0,275603.5,135006.25,3.27417817472E11,0.37377502965214254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,255496.0, +8,4,240,Uncorrelated,0.33326180221812995,148567.75,149950.0,217240.5,109034.0,2.93716686113E11,0.42231970416061565,3434.0,3434.0,0.0,466.0,2.152300524170064,7391.0,1.0,0.0,199729.0,271182.5,136200.0,2.98728933673E11,0.3425275769084252,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,250365.5,754882.0,99254.25,7.96195581575E11,0.5890720418140957,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,183812.0,261571.75,140531.0,3.09045253916E11,0.33326180221812995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240887.5, +8,4,240,Uncorrelated,0.36366751672247755,142307.0,145528.75,202683.75,117516.5,2.88592653967E11,0.4143847409159642,494.0,494.0,0.0,68.0,2.331983805668016,1152.0,1.0,0.0,187214.0,234583.5,116532.5,2.91679412428E11,0.3747531760646907,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,216024.0,753910.75,99254.25,7.95209445669E11,0.5890720418140957,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,183812.0,267449.5,127996.5,3.20235378273E11,0.36366751672247755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,247314.0, +8,4,240,Uncorrelated,0.3655373068036072,141984.0,143320.0,206474.25,110339.25,2.74288017855E11,0.41173476262482595,2603.0,2603.0,0.0,83910.0,1.317710334229735,3430.0,1.0,0.0,190046.0,237663.0,119210.5,2.75411361398E11,0.3687745056451358,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,220791.0,760701.0,99254.25,8.01980214027E11,0.5890720418140957,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,183812.0,237879.0,128952.25,2.90645082001E11,0.3655373068036072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,220978.5, +8,4,240,Uncorrelated,0.3173336527280803,192573.25,197036.25,226895.25,109902.0,3.26294322159E11,0.38163014421005526,247.0,247.0,0.0,2863.0,1.9473684210526316,481.0,1.0,0.0,209409.5,293249.25,148309.5,3.90667662349E11,0.3175715352739891,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,270506.0,761904.75,99254.25,8.03188603546E11,0.5890720418140957,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,183812.0,315099.0,145299.5,4.39405456756E11,0.3173336527280803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,290599.0, +8,4,240,Uncorrelated,0.35140332952701486,154345.0,154345.0,208556.75,103390.75,2.71271289576E11,0.4167050637391403,492.0,492.0,0.0,4309.0,2.1930894308943087,1079.0,1.0,0.0,190717.5,221085.0,120609.25,2.81521169344E11,0.36334481906631677,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,201781.0,751105.75,97716.25,7.88841423103E11,0.5869343109561873,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,177853.0,218502.5,134551.5,2.855688205E11,0.35140332952701486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200839.0, +8,4,240,Uncorrelated,0.34339503575936053,150514.75,152901.5,215215.25,108067.5,2.80510927458E11,0.4241824762438982,2807.0,2807.0,0.0,10231.0,1.6636978981118633,4670.0,1.0,0.0,197496.0,278717.75,144406.0,3.64151033038E11,0.35053188292565657,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,257385.0,748307.0,97716.25,7.86040726444E11,0.5869343109561873,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,177853.0,264370.25,138518.25,3.31396817466E11,0.34339503575936053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,243796.0, +8,4,240,Uncorrelated,0.3562213274034898,149669.0,150639.5,209862.25,132486.25,2.74376556368E11,0.4288185053856068,3401.0,3401.0,0.0,19296.0,1.4445751249632461,4913.0,1.0,0.0,192466.5,217264.25,126755.25,2.95807475952E11,0.36322628897302855,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,199739.0,750111.0,97716.25,7.87862053598E11,0.5869343109561873,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,177853.0,249115.5,133237.75,3.19231608647E11,0.3562213274034898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,226461.0, +8,4,240,Uncorrelated,0.3643604180748446,154945.25,154945.25,211183.0,129982.75,3.01989868911E11,0.4298918852325283,2849.0,2849.0,0.0,16217.0,1.5124605124605124,4309.0,1.0,0.0,193056.25,218288.5,128548.5,2.76440937293E11,0.37450096394287596,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,199704.0,788777.25,103940.5,8.20137408892E11,0.5693739199344718,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,173829.0,220829.5,129008.5,2.62149598237E11,0.3643604180748446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201568.75, +8,4,240,Uncorrelated,0.34986298359465784,160748.5,160748.5,206235.5,118731.5,2.90623930852E11,0.4116302454974378,2419.0,2419.0,0.0,553.0,1.6184373708143862,3915.0,1.0,0.0,186836.5,220581.5,131415.5,2.69302418223E11,0.3698510633338772,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,202579.0,720554.75,103940.5,7.51928722346E11,0.5693772496162541,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,173829.0,244548.25,132131.25,2.98871668901E11,0.34986298359465784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,225060.0, +8,4,240,Uncorrelated,0.35916278481265546,143878.5,146811.25,218249.75,117100.75,2.96796037499E11,0.43691917863409796,1860.0,1860.0,0.0,928.0,2.532258064516129,4710.0,1.0,0.0,202194.0,243252.25,131818.5,3.07000733115E11,0.36789654012766,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,224390.5,734247.5,103940.5,7.65615431882E11,0.5693772496162541,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,173829.0,257254.25,134147.0,3.20201146674E11,0.35916278481265546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,237972.5, +8,4,240,Uncorrelated,0.3660838097095016,159246.75,159246.75,208844.0,121405.5,2.38708292723E11,0.4003156604918454,1288.0,1288.0,0.0,195256.0,1.71972049689441,2215.0,1.0,0.0,193195.5,234312.25,134114.0,2.83545951981E11,0.37141373207181194,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,216652.0,767745.5,100019.0,8.16679579728E11,0.5664912436989762,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,164378.0,220069.0,130650.75,2.67252286644E11,0.3660838097095016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,203627.5, +8,4,240,Uncorrelated,0.36640316803458484,170431.75,173476.25,233054.5,109630.75,3.12112965991E11,0.42663919064515426,1665.0,1665.0,0.0,42566.0,3.4846846846846846,5802.0,1.0,0.0,213583.5,263389.0,146811.75,3.66152130863E11,0.36501311890382776,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,243600.5,717954.5,105106.75,7.40140848236E11,0.5641767362587676,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,187336.0,262146.25,145600.0,3.97804648857E11,0.36640316803458484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,242884.5, +8,4,240,Uncorrelated,0.3482669768364364,150513.0,152144.75,214413.5,113664.25,2.78427300116E11,0.4165373825727843,383.0,383.0,0.0,2120.0,1.95822454308094,750.0,1.0,0.0,195202.0,227697.75,132886.75,2.95756274453E11,0.36165145232400414,27.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,209021.0,708189.0,100019.0,7.57141946686E11,0.5664912436989762,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,164378.0,246830.5,130099.75,3.17221115251E11,0.3482669768364364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,226515.0, +8,4,240,Uncorrelated,0.36762849550293053,149586.75,151449.75,206253.25,122271.5,2.89606431811E11,0.3996702205085193,219.0,219.0,0.0,234.0,1.6712328767123288,366.0,1.0,0.0,189476.5,207563.75,126963.5,2.8253461109E11,0.3764327002754886,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,191972.5,719968.25,105558.5,7.64796404004E11,0.5737104226791474,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,174878.5,234344.5,124439.5,3.25380650191E11,0.36762849550293053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,217154.5, +8,4,240,Uncorrelated,0.34656597354704566,129833.5,133316.5,225122.75,121517.25,2.71292181254E11,0.38995500409282907,2829.0,2829.0,0.0,342.0,1.3789324849770237,3901.0,1.0,0.0,207709.0,240701.5,122435.25,3.22308029914E11,0.3643239772549639,26.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,221719.5,732348.0,105106.75,7.54536793611E11,0.5641767362587676,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,187336.0,248111.0,124539.75,3.17220400708E11,0.34656597354704566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229530.5, +8,4,240,Uncorrelated,0.3396385475243675,160923.5,162575.0,217997.75,131239.5,2.98821615424E11,0.3954738386435893,1951.0,1951.0,0.0,2005.0,2.0035879036391595,3909.0,1.0,0.0,197343.5,247764.5,146460.0,3.23227226602E11,0.35174959074378437,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,227359.5,709647.5,97322.0,7.44325502461E11,0.5648716030100346,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,178179.5,268475.25,143070.75,3.5383121763E11,0.3396385475243675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,245457.25, +8,4,240,Uncorrelated,0.3248824511588241,150989.0,150989.0,225392.0,116686.75,2.90660920506E11,0.39116398676003045,1530.0,1530.0,0.0,8284.0,1.7660130718954248,2702.0,1.0,0.0,207348.0,257038.75,134648.75,3.45779060792E11,0.3320791522759874,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,238124.0,713383.5,101904.75,7.46268845402E11,0.5648111539881651,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,175872.0,263161.75,138518.0,2.82547900582E11,0.3248824511588241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,243421.5, +8,4,240,Uncorrelated,0.35921586182333853,168355.75,172261.75,213691.5,115587.0,2.92745492472E11,0.4258127125926749,1193.0,1193.0,0.0,610.0,1.3428331936295055,1602.0,1.0,0.0,197183.0,266731.5,139806.75,3.30487173833E11,0.36068460967903204,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,246745.0,708941.5,101932.25,7.41839267057E11,0.5664007998875975,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,175841.5,292963.75,148000.5,3.79412289935E11,0.35921586182333853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,272938.5, +8,4,240,Uncorrelated,0.3683649029711511,163382.5,167045.5,209582.5,115828.25,2.68229943437E11,0.4528219890668958,1551.0,1551.0,0.0,50559.0,2.6840747904577693,4163.0,1.0,0.0,192922.0,262136.5,148038.25,3.4987075487E11,0.3771022372673121,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,241224.0,720335.75,97322.0,7.55028915923E11,0.5658828988083374,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,178210.0,287643.5,138108.25,3.79449762823E11,0.3683649029711511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264974.0, +8,4,240,Uncorrelated,0.350437683593482,147364.25,150939.5,218756.25,124490.0,2.72307937081E11,0.40674022931418136,1059.0,1059.0,0.0,219.0,2.012275731822474,2131.0,1.0,0.0,201171.0,267999.0,126454.5,3.19267077929E11,0.3564433756040818,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,247407.5,721774.75,97322.0,7.56457803982E11,0.5648716030100346,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,178179.5,287385.0,133004.25,3.24368563632E11,0.350437683593482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,266008.5, +8,4,240,Uncorrelated,0.3515082952517519,148284.5,150766.75,222614.0,112891.5,2.50922114531E11,0.42655340600671826,4104.0,4104.0,0.0,3503.0,1.5855263157894737,6507.0,1.0,0.0,204214.5,233741.0,130213.0,2.88568717586E11,0.35976633373192884,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,215206.0,726335.0,93621.75,8.06405170268E11,0.5571339495851134,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,180902.0,249125.75,135573.5,3.36589710634E11,0.3515082952517519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,227869.75, +8,4,240,Uncorrelated,0.33303562715940344,150842.75,151932.75,224383.5,118694.0,2.98820559656E11,0.3727099366051242,1210.0,1210.0,0.0,11514.0,1.3669421487603306,1654.0,1.0,0.0,209395.5,243965.25,130097.25,2.95670666971E11,0.3403178509583658,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,225985.5,742881.0,102366.25,8.10106831249E11,0.5472517585338301,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,191474.0,252694.5,143223.25,3.1822700325E11,0.33303562715940344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,230040.25, +8,4,240,Uncorrelated,0.35611220131594135,148451.75,152148.0,238174.0,117172.25,2.65205118603E11,0.39577513563430683,2225.0,2225.0,0.0,28389.0,1.1667415730337078,2596.0,1.0,0.0,218770.25,286620.25,131925.5,3.08044720707E11,0.35491664055671907,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,263851.0,819128.25,98082.75,8.3978858651E11,0.584203756534358,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,189821.0,286369.25,132033.75,3.39664435512E11,0.35611220131594135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264067.5, +8,4,240,Uncorrelated,0.3681865404594251,134692.25,138349.5,214438.25,109363.75,2.73346504075E11,0.4349895285367985,2277.0,2277.0,0.0,65177.0,1.5010979358805445,3418.0,1.0,0.0,197239.0,229495.0,128923.0,2.72315016867E11,0.3746194818687027,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,211490.5,738608.25,98082.75,7.59271575017E11,0.584203756534358,240.0,240.0,0.0,0.0,1.0,240.0,0.0,0.0,189821.0,265861.0,130926.25,3.09994598286E11,0.3681865404594251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,245072.5, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-280.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-280.csv new file mode 100644 index 0000000000000000000000000000000000000000..b076e4271786cec7b541364c4962e8f56743d3bc --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-280.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,280,Uncorrelated,0.33758923569972393,161825.5,161825.5,250411.75,134387.5,3.19305208878E11,0.4066511845801857,3325.0,3325.0,0.0,122133.0,1.8057142857142856,6004.0,1.0,0.0,231052.5,284089.25,148895.75,3.45797615517E11,0.34650600062176673,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,261693.5,1210418.75,103263.25,1.279551710503E12,0.571787550625993,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,195268.5,269207.0,152891.5,3.15105970684E11,0.33758923569972393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,247529.0, +8,4,280,Uncorrelated,0.3298042580990844,176948.25,178136.0,249356.75,118526.25,3.49808989422E11,0.4250763956441947,1544.0,1544.0,0.0,8483.0,2.0718911917098444,3199.0,1.0,0.0,229891.5,305726.25,149619.5,3.7022215631E11,0.3366537203568425,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,281899.5,1177733.75,103263.25,1.246862176422E12,0.571787550625993,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,195268.5,308297.75,159044.75,3.5802312328E11,0.3298042580990844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,284320.0, +8,4,280,Uncorrelated,0.3507308624076125,161282.75,161282.75,253124.5,129445.25,3.35480733993E11,0.4009177505798619,1042.0,1042.0,0.0,4591.0,1.506717850287908,1570.0,1.0,0.0,233580.5,276637.25,150247.5,3.53848856025E11,0.3544815196322121,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,257123.0,1187256.25,103263.25,1.256375546539E12,0.571787550625993,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,195268.5,289891.25,142727.5,3.51839815378E11,0.3507308624076125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,269536.5, +8,4,280,Uncorrelated,0.3499257175030193,168904.0,173148.5,265159.5,136803.0,3.45725852399E11,0.4299889256759564,715.0,715.0,0.0,2028.0,1.8615384615384616,1331.0,1.0,0.0,242063.0,300391.75,152724.25,3.91672837758E11,0.3534786701069181,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,276297.0,1189428.5,103263.25,1.258529791515E12,0.571787550625993,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,195268.5,306483.75,159576.25,3.85497969906E11,0.3499257175030193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,282605.0, +8,4,280,Uncorrelated,0.3513438059155378,166963.25,170706.25,275178.0,152350.5,3.23396638012E11,0.41236321182374364,4867.0,4867.0,0.0,20988.0,1.6108485720156154,7840.0,1.0,0.0,253522.0,303829.0,155771.5,3.74131916739E11,0.3535208546890444,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,279454.5,1201431.75,119008.0,1.254463424709E12,0.5587739718591066,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,195195.75,341153.5,157629.5,3.81444666079E11,0.3513438059155378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,315259.0, +8,4,280,Uncorrelated,0.3485213899782699,168641.5,168641.5,251709.5,144043.75,2.83603929751E11,0.39131428965886195,3688.0,3688.0,0.0,12280.0,1.4387201735357917,5306.0,1.0,0.0,232194.0,278681.25,155618.25,3.1717972031E11,0.35749530092083254,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,257158.0,1227264.25,110285.75,1.288713919523E12,0.5495111088101083,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,181744.5,285579.0,150574.0,3.29423606655E11,0.3485213899782699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,264144.5, +8,4,280,Uncorrelated,0.3370537672449374,171719.25,175680.75,266921.0,128434.5,3.27361739353E11,0.3921368981619302,910.0,910.0,0.0,6887.0,1.6912087912087912,1539.0,1.0,0.0,247255.5,284302.25,137981.5,3.50848646389E11,0.35039095475797044,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,262067.0,1195859.5,107068.5,1.263164021398E12,0.546558634584935,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,184792.5,322580.75,149751.5,3.81493700422E11,0.3370537672449374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,299503.0, +8,4,280,Uncorrelated,0.3443163073506973,157857.5,161454.25,246275.5,130578.5,3.28374392195E11,0.4010302740062904,2847.0,2847.0,0.0,31386.0,1.613277133825079,4593.0,1.0,0.0,227280.5,277922.0,146438.5,3.46021831279E11,0.34839052044369084,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,256644.0,1202056.5,107068.5,1.269373123715E12,0.546558634584935,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,184792.5,307015.5,152440.25,3.65170228183E11,0.3443163073506973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,284822.0, +8,4,280,Uncorrelated,0.36428038294439197,168038.75,169717.25,211374.0,154728.25,2.70281358094E11,0.44466879221800854,4898.0,4898.0,0.0,34874.0,2.1966108615761537,10759.0,1.0,0.0,191696.5,347050.0,159997.5,3.63119687925E11,0.37170543137331036,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,319995.0,1195864.25,110285.75,1.257312117914E12,0.5495111088101083,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,181744.5,319244.75,164507.75,3.66167085188E11,0.36428038294439197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,296116.5, +8,4,280,Uncorrelated,0.3632578748225711,175171.5,175171.5,253964.25,141105.75,3.44717696241E11,0.39116184822297867,662.0,662.0,0.0,139638.0,4.419939577039275,2926.0,1.0,0.0,230392.0,282285.75,153538.25,3.36599685583E11,0.37007459563471007,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,260972.0,1196468.25,110285.75,1.257929817443E12,0.5495111088101083,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,181744.5,288403.75,152873.0,3.35578360794E11,0.3632578748225711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,266370.5, +8,4,280,Uncorrelated,0.35868288753795013,151965.5,152798.5,243136.5,137878.25,3.51720477624E11,0.42180797489348026,5056.0,5056.0,0.0,1449.0,1.5625,7900.0,1.0,0.0,222852.0,257043.5,145310.5,3.29470354213E11,0.36730821048323997,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,237709.0,1197517.5,113598.0,1.222984923769E12,0.582112757437648,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,217155.0,280249.75,146741.75,3.38650536206E11,0.35868288753795013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,259349.0, +8,4,280,Uncorrelated,0.3443976466960518,163397.0,163397.0,229457.0,128324.0,3.1515242621E11,0.39836139036862955,2031.0,2031.0,0.0,9600.0,1.5681930083702609,3185.0,1.0,0.0,207922.5,249905.75,153386.75,2.89685322376E11,0.35562814569965834,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,232130.0,1193081.75,113598.0,1.218579226291E12,0.582112757437648,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,217155.0,276678.0,143741.0,3.22319702214E11,0.3443976466960518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,257040.5, +8,4,280,Uncorrelated,0.3364538770005317,208270.0,212501.0,257012.0,130983.25,3.5696736427E11,0.3778254560859247,844.0,844.0,0.0,42317.0,2.7523696682464456,2323.0,1.0,0.0,237003.5,316946.75,152047.25,4.5278431208E11,0.33455474976332955,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,292684.5,1209889.0,113598.0,1.235398526941E12,0.582112757437648,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,217155.0,335552.5,162930.5,4.68127938045E11,0.3364538770005317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,309708.0, +8,4,280,Uncorrelated,0.34647832934439765,168905.5,172335.0,262881.25,127511.5,3.25359283647E11,0.4277877761335326,5364.0,5364.0,0.0,65251.0,1.9151752423564503,10273.0,1.0,0.0,243403.0,278677.5,151899.75,3.76248967939E11,0.35209934251004676,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,259575.0,1209479.5,113598.0,1.234971680979E12,0.582112757437648,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,217155.0,305474.75,156123.25,3.8350965972E11,0.34647832934439765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,284065.5, +8,4,280,Uncorrelated,0.356453790545574,189026.5,191043.25,266723.0,136912.5,3.23322608232E11,0.4092446286255247,1614.0,1614.0,0.0,15794.0,2.641883519206939,4264.0,1.0,0.0,244436.0,339136.75,167989.25,4.4572388559E11,0.36447392878705137,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,311868.0,1220946.0,112910.5,1.246186127015E12,0.5774268987309853,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,221645.5,324332.5,171887.5,4.19169335399E11,0.356453790545574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294818.0, +8,4,280,Uncorrelated,0.3509033833275201,171684.25,175733.5,273031.0,134449.75,3.7218151004E11,0.4101862574119288,4141.0,4141.0,0.0,158563.0,1.9654672784351606,8139.0,1.0,0.0,251941.5,306252.75,151960.25,3.84531659729E11,0.357819323334496,18.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,283135.5,1221728.75,125900.75,1.262013276279E12,0.5566292291594,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,222431.0,329398.0,163157.25,3.834679038E11,0.3509033833275201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,304382.0, +8,4,280,Uncorrelated,0.34471014998256017,163158.5,165517.75,259565.0,155752.75,3.314730346E11,0.39007603767003834,2672.0,2672.0,0.0,381.0,1.2114520958083832,3237.0,1.0,0.0,239452.0,317976.75,151834.75,3.62065904651E11,0.36204952912452043,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,296211.5,1219591.5,125900.75,1.259883857799E12,0.5566292291594,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,222431.0,299841.5,147497.0,3.65103521945E11,0.34471014998256017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,278989.0, +8,4,280,Uncorrelated,0.3588824555284269,170841.0,170841.0,262617.75,136963.0,3.4571016618E11,0.40221834670387163,3125.0,3125.0,0.0,447.0,1.6,5000.0,1.0,0.0,241513.0,303429.0,158244.5,3.51893181004E11,0.36602860132542725,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,279980.0,1220393.0,125900.75,1.260662823681E12,0.5566292291594,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,222431.0,285830.5,156226.25,3.61047714207E11,0.3588824555284269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,261661.5, +8,4,280,Uncorrelated,0.33888385071503313,190681.0,190681.0,236893.5,153320.25,2.87638084366E11,0.4141974189047785,4132.0,4132.0,0.0,1507.0,1.8480154888673765,7636.0,1.0,0.0,213104.5,253973.5,174268.0,2.85580650147E11,0.34837809557028254,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,232551.75,1247374.25,125900.75,1.287671807911E12,0.5566292291594,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,222431.0,241984.25,162067.0,2.98816776188E11,0.33888385071503313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,218397.0, +8,4,280,Uncorrelated,0.345457970003488,169945.5,173908.25,237897.75,142089.25,2.87645405678E11,0.3906759679107081,3136.0,3136.0,0.0,28176.0,2.092793367346939,6563.0,1.0,0.0,218723.5,305737.5,143690.0,3.81440548001E11,0.342475061039414,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,283830.0,1253016.75,125900.75,1.293329016011E12,0.5566292291594,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,222431.0,313623.5,156246.0,3.93685800948E11,0.345457970003488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,290997.5, +8,4,280,Uncorrelated,0.3219992549110424,174620.25,178182.0,250628.5,123469.25,3.16156984842E11,0.4148232427479686,3902.0,3902.0,0.0,4059.0,1.735007688364941,6770.0,1.0,0.0,230555.5,295530.5,150423.5,3.91608081024E11,0.331043886890318,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,271640.0,1248941.5,109259.25,1.301715934269E12,0.5712789782787869,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,211539.0,321759.5,157359.75,3.95707122415E11,0.3219992549110424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,297217.75, +8,4,280,Uncorrelated,0.35105340906966004,181504.0,186308.25,221827.25,120063.0,2.9066951188E11,0.4059497798535425,1296.0,1296.0,0.0,1336.0,2.5208333333333335,3267.0,1.0,0.0,204523.5,314917.75,151297.5,4.00845079057E11,0.36000598372599135,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,290622.0,1245339.25,109259.25,1.298094946652E12,0.5712789782787869,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,211539.0,332199.0,170468.5,4.14026872169E11,0.35105340906966004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,307153.0, +8,4,280,Uncorrelated,0.335625177102467,169194.25,170899.0,235589.75,175666.0,3.17154116257E11,0.40329450144486845,3391.0,3391.0,0.0,56813.0,1.9445591271011502,6594.0,1.0,0.0,214016.5,291980.5,154105.25,3.79446905787E11,0.3350052285682641,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,270474.5,1262259.5,109259.25,1.315036454455E12,0.5712789782787869,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,211539.0,296025.75,151773.0,3.65096673615E11,0.335625177102467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,273349.0, +8,4,280,Uncorrelated,0.34062504045487824,182289.5,184453.75,273308.0,130810.75,3.35520852716E11,0.40236673623707064,1601.0,1601.0,0.0,67.0,1.5858838226108682,2539.0,1.0,0.0,250632.5,303371.25,152045.25,4.00755685872E11,0.34218713815358903,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,277919.0,1252286.0,109259.25,1.30506000663E12,0.5712789782787869,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,211539.0,304449.25,163973.0,3.97756243839E11,0.34062504045487824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,279442.0, +8,4,280,Uncorrelated,0.34134136149903843,170887.25,175621.25,247835.25,129778.0,3.52899651597E11,0.40329162465352647,1919.0,1919.0,0.0,33014.0,2.6091714434601356,5007.0,1.0,0.0,227012.0,281269.25,150005.0,4.01883738817E11,0.3563107452471811,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,256305.25,1267213.25,109258.25,1.320004384022E12,0.5712789782787869,280.0,280.0,0.0,0.0,1.0,280.0,0.0,0.0,211538.0,297570.25,158425.75,3.84534703681E11,0.34134136149903843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,270581.25, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-320.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-320.csv new file mode 100644 index 0000000000000000000000000000000000000000..d10a30db7297b8221fab8a64806b6def8b1c8f94 --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-320.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,320,Uncorrelated,0.3538688448726285,192321.5,195721.0,278185.75,149999.0,3.97813968974E11,0.384929996393499,2233.0,2233.0,0.0,61449.0,2.8047469771607703,6263.0,1.0,0.0,254925.5,326301.75,168252.25,4.36174418418E11,0.36058288295159147,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,300181.5,1870707.0,135412.25,1.89110562052E12,0.5738201635722716,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,241709.5,316461.5,167082.75,4.36566032211E11,0.3538688448726285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,291169.0, +8,4,320,Uncorrelated,0.3603657172994417,177663.0,177663.0,260038.5,165039.5,3.31413788348E11,0.4218998633666105,7135.0,7135.0,0.0,292372.0,2.1247372109320253,15160.0,1.0,0.0,236162.0,283151.75,160503.5,3.39534003828E11,0.36802597714848573,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,262444.5,1879610.0,135412.25,1.900026801993E12,0.5738201635722716,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,241709.5,285350.75,165790.75,3.31505268987E11,0.3603657172994417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,263848.0, +8,4,320,Uncorrelated,0.3447259123865859,187717.5,188046.0,296176.5,148938.0,3.27276030447E11,0.38287726391960736,730.0,730.0,0.0,5458.0,2.1,1533.0,1.0,0.0,272600.5,334311.25,172272.5,3.86595112746E11,0.3480868093841415,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,307277.0,1906260.0,135412.25,1.926665635114E12,0.5738201635722716,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,241709.5,339858.0,173750.5,3.90567183048E11,0.3447259123865859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312473.5, +8,4,320,Uncorrelated,0.3234475564339849,179300.5,181098.0,266928.75,143722.75,3.55828467804E11,0.38098999099021075,3158.0,3158.0,0.0,245646.0,2.0018999366687775,6322.0,1.0,0.0,235148.0,341404.5,168189.5,3.86466103366E11,0.3205274540041856,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,315003.5,1898912.75,135412.25,1.919312516152E12,0.5738201635722716,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,241709.5,321266.5,163341.75,3.94707387481E11,0.3234475564339849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,296523.0, +8,4,320,Uncorrelated,0.33511116166819416,215938.5,215938.5,285601.0,175888.0,3.39655904851E11,0.36325479606464817,90.0,90.0,0.0,8145.0,1.8888888888888888,170.0,1.0,0.0,254500.0,318497.0,174117.0,3.83527965741E11,0.34442084635142317,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,293188.5,1910229.75,135412.25,1.930639893575E12,0.5738201635722716,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,241709.5,318146.25,163770.5,3.58937679801E11,0.33511116166819416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,293079.0, +8,4,320,Uncorrelated,0.34564055271898453,225591.5,225591.5,303161.5,169123.0,3.88589575824E11,0.4051798036143163,4987.0,4987.0,0.0,1980.0,2.037497493483056,10161.0,1.0,0.0,280733.5,284825.5,187986.25,3.61036181215E11,0.34850836351095016,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,264188.0,1834858.5,140935.0,1.87030316905E12,0.5653311040634192,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,237372.25,290454.0,182741.5,3.60068126154E11,0.34564055271898453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,269471.0, +8,4,320,Uncorrelated,0.34665771959683206,190372.0,191764.0,279957.0,167921.75,3.34526485975E11,0.3733002441700343,1812.0,1812.0,0.0,2438.0,1.7919426048565121,3247.0,1.0,0.0,253054.5,323795.5,154775.5,4.15946708637E11,0.3556285316558827,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,299527.0,1857007.0,140935.0,1.892456492677E12,0.5653311040634192,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,237372.25,347297.5,173854.25,4.02887605664E11,0.34665771959683206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,321424.0, +8,4,320,Uncorrelated,0.355877200216929,186987.0,187996.5,292713.0,148769.0,3.72267213012E11,0.38706073760843324,1376.0,1376.0,0.0,146556.0,2.4193313953488373,3329.0,1.0,0.0,262248.0,355920.0,175705.25,4.26283307556E11,0.3591948636821441,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,329844.5,1859421.0,140935.0,1.894862833378E12,0.5653311040634192,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,237372.25,338893.0,173877.25,3.95749240934E11,0.355877200216929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,313990.5, +8,4,320,Uncorrelated,0.33552886429694273,173362.75,176732.25,279423.0,151384.0,3.31472481845E11,0.39411717662465545,5380.0,5380.0,0.0,7650.0,1.9806691449814127,10656.0,1.0,0.0,245133.5,351621.25,162368.0,3.8613256222E11,0.34058220932644556,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,324610.0,1838296.5,140935.0,1.873740684241E12,0.5653311040634192,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,237372.25,341705.75,171447.75,3.82507982345E11,0.33552886429694273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,316378.0, +8,4,320,Uncorrelated,0.3519309925999235,188354.25,191914.25,291673.0,167162.75,3.56912567536E11,0.39379728139034464,3660.0,3660.0,0.0,794.0,2.3284153005464483,8522.0,1.0,0.0,266290.0,329969.0,176315.25,4.20240194497E11,0.36015829815735345,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,304660.5,1858990.0,140935.0,1.89444003497E12,0.5653311040634192,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,237372.25,326638.5,172536.5,4.30427850181E11,0.3519309925999235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,302426.0, +8,4,320,Uncorrelated,0.3489677174592164,179089.5,179089.5,284383.5,158119.0,3.75476374418E11,0.3832786380306185,1760.0,1760.0,0.0,191968.0,2.0795454545454546,3660.0,1.0,0.0,261264.5,311111.25,174524.5,4.16188143463E11,0.3475353307448536,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,283395.75,1847423.25,131833.75,1.905827703123E12,0.561089916072656,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,231358.5,311083.25,171997.5,3.82485050598E11,0.3489677174592164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,284204.0, +8,4,320,Uncorrelated,0.3496388357100018,193859.25,193859.25,290707.0,160876.0,3.5802755925E11,0.3951421556167965,3416.0,3416.0,0.0,54402.0,2.1197306791569086,7241.0,1.0,0.0,258474.0,319419.75,174089.75,3.87386693663E11,0.3570862449556574,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,294646.5,1857851.75,131833.75,1.916256369665E12,0.561089916072656,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,231358.5,343379.75,179670.25,3.79311364357E11,0.3496388357100018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,316462.5, +8,4,320,Uncorrelated,0.36963465374179727,187754.25,190821.75,291424.25,144540.5,3.5078748864E11,0.4227055831779703,4526.0,4526.0,0.0,870.0,1.9712770658418028,8922.0,1.0,0.0,256788.0,336954.0,179488.25,4.07748609578E11,0.3713024326784505,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,308701.5,1867363.0,131833.75,1.925777355556E12,0.561089916072656,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,231358.5,333536.0,177647.25,4.25341273368E11,0.36963465374179727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,306501.0, +8,4,320,Uncorrelated,0.34659000559682573,184986.5,186350.5,290102.5,168836.25,3.7118044545E11,0.39428698068156065,4388.0,4388.0,0.0,1410.0,2.144257064721969,9409.0,1.0,0.0,260356.5,352139.25,175126.5,3.91660415393E11,0.3520177996586813,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,323103.0,1869501.0,131833.75,1.927900516539E12,0.561089916072656,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,231358.5,340386.25,174975.5,3.82448642831E11,0.34659000559682573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,312754.5, +8,4,320,Uncorrelated,0.3331263217335886,204257.0,207951.0,299855.25,142646.0,3.95705748198E11,0.3915010886890281,482.0,482.0,0.0,2090.0,3.979253112033195,1918.0,1.0,0.0,277541.5,408421.5,189471.5,4.75081365121E11,0.33299234850068926,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,378943.0,1877527.5,131833.75,1.93517747136E12,0.5621354081237863,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,231033.5,364370.25,186666.25,4.59918186962E11,0.3331263217335886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,336746.0, +8,4,320,Uncorrelated,0.34193500233245216,209618.75,213444.0,277451.75,152322.25,4.14137137705E11,0.39943647955216915,3925.0,3925.0,0.0,51644.0,1.5085350318471338,5921.0,1.0,0.0,255076.5,417190.25,195062.25,4.81449301279E11,0.3476361374591821,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,385625.5,1872474.5,131949.5,1.934676991083E12,0.5541495879334474,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,223109.25,388602.75,179819.5,4.65106602822E11,0.34193500233245216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,359529.5, +8,4,320,Uncorrelated,0.35816886953817445,208316.5,212210.0,311554.75,171433.25,3.77340213974E11,0.4174305706733012,1715.0,1715.0,0.0,17464.0,1.5556851311953352,2668.0,1.0,0.0,286109.25,374447.0,177494.25,4.96341323289E11,0.3599900482040118,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,346825.5,1879739.0,134770.0,1.956503581384E12,0.5494287047115534,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,207117.75,395484.5,183242.25,4.66099091826E11,0.35816886953817445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,366484.5, +8,4,320,Uncorrelated,0.34423759912921786,180959.75,184341.5,314371.75,158978.75,4.03871680713E11,0.38369149432436633,1131.0,1131.0,0.0,84610.0,2.2475685234305924,2542.0,1.0,0.0,279476.0,327679.5,163257.5,4.21271420199E11,0.35161934380345206,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,304960.0,1883168.25,134769.0,1.95992855698E12,0.5494287047115534,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,207116.75,327161.5,164658.75,4.16166076934E11,0.34423759912921786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,304682.0, +8,4,320,Uncorrelated,0.3450312548592754,187751.25,187751.25,257271.5,172366.25,3.78391585731E11,0.38946353599751204,1224.0,1224.0,0.0,37040.0,2.590686274509804,3171.0,1.0,0.0,231558.25,304443.75,166055.5,4.01764808842E11,0.3459580158606749,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,280076.5,1883472.25,130272.5,1.956424750501E12,0.5499350023324522,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,213982.0,302157.25,165015.5,3.95746424867E11,0.3450312548592754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,277217.5, +8,4,320,Uncorrelated,0.35645342870471153,175622.25,176775.25,287092.5,165812.5,3.61046960314E11,0.40325796921163115,3716.0,3716.0,0.0,651.0,1.9997308934337998,7431.0,1.0,0.0,266232.0,315184.5,175257.0,3.65168965269E11,0.36453926294510963,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,293056.5,1904366.5,130272.5,1.977308293518E12,0.5499350023324522,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,213982.0,314167.0,163118.0,3.72316735947E11,0.35645342870471153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292061.0, +8,4,320,Uncorrelated,0.34294673141519805,187515.75,190237.25,280257.75,156781.5,3.31534134664E11,0.41619150888735446,4486.0,4486.0,0.0,11821.0,1.8580026749888543,8335.0,1.0,0.0,258453.0,352669.0,165403.25,4.38598806399E11,0.3407528215977672,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,326744.0,1857058.0,123789.25,1.899398009484E12,0.5645619186233658,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,236364.0,356240.25,178866.0,4.31464599347E11,0.34294673141519805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,330070.0, +8,4,320,Uncorrelated,0.33833295674160213,192927.0,193846.5,305333.25,160687.75,3.88449199906E11,0.40176446901197055,4489.0,4489.0,0.0,3201.0,2.7055023390510136,12145.0,1.0,0.0,281038.0,333173.5,163883.25,3.74232940137E11,0.3415985750947055,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,307116.0,1867411.5,123789.25,1.909723674981E12,0.5645619186233658,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,236364.0,356491.5,186934.0,3.8659327419E11,0.33833295674160213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,327322.0, +8,4,320,Uncorrelated,0.3728548472405083,203124.0,203124.0,294216.75,136183.25,4.09981211988E11,0.416548745065912,2550.0,2550.0,0.0,39287.0,1.7901960784313726,4565.0,1.0,0.0,268935.0,308471.0,174591.75,3.51762462368E11,0.38247119073256136,11.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,283958.5,1866695.25,123789.25,1.909033698103E12,0.5645619186233658,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,236364.0,291979.75,172210.0,3.64141122264E11,0.3728548472405083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,268685.0, +8,4,320,Uncorrelated,0.3663122496664323,190567.75,195032.25,289121.5,150827.25,4.25269228222E11,0.4144924279815651,3682.0,3682.0,0.0,435.0,1.5866376969038567,5842.0,1.0,0.0,265333.0,315161.0,170726.75,4.60960473456E11,0.3719699618653535,9.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,292915.5,1874833.75,123789.25,1.917163314105E12,0.5645619186233658,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,236364.0,350629.75,171385.0,4.47785442317E11,0.3663122496664323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,323750.0, +8,4,320,Uncorrelated,0.3274568192347067,187534.0,189778.5,289334.0,145498.25,3.43633592904E11,0.39905932014042034,3054.0,3054.0,0.0,1620.0,3.596922069417158,10985.0,1.0,0.0,267552.0,345283.5,187878.75,4.1311290554E11,0.3359156165227413,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,319901.5,1875946.25,123789.25,1.918271068645E12,0.5645619186233658,320.0,320.0,0.0,0.0,1.0,320.0,0.0,0.0,236364.0,345531.0,187087.75,4.13110297727E11,0.3274568192347067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320624.0, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-40.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-40.csv new file mode 100644 index 0000000000000000000000000000000000000000..766dfb5912065ab53aeb001df7eb9c3bab953a9e --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-40.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,40,Uncorrelated,0.3761309352375088,25762.75,27023.25,35989.0,20138.75,5.4108904195E10,0.41066232334568137,50.0,50.0,0.0,212.0,1.2,60.0,1.0,0.0,33224.0,31376.25,27426.75,3.8773066417E10,0.3872540743462673,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,28267.25,31247.0,18557.0,4.1958201989E10,0.5822069499756681,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27235.0,44358.5,24922.5,6.3230590328E10,0.3761309352375088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40436.0, +8,4,40,Uncorrelated,0.36674578661449386,25937.75,28282.75,33397.75,20370.0,4.4869307333E10,0.46368593022216487,20.0,20.0,0.0,628.0,1.1,22.0,1.0,0.0,29846.0,31870.5,26145.25,4.181137588E10,0.38891261383837683,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,28600.75,31087.0,18557.0,4.1797360318E10,0.5822069499756681,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27235.0,41310.25,24749.25,5.4062673951E10,0.36674578661449386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37251.75, +8,4,40,Uncorrelated,0.3405468214636859,29657.25,32574.25,40008.25,20992.0,5.6073075807E10,0.369268355662373,60.0,60.0,0.0,6515.0,1.25,75.0,1.0,0.0,36827.0,28557.0,23627.5,3.7738073857E10,0.39687757595018425,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,25901.75,31082.75,18557.0,4.1786358471E10,0.5822069499756681,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27235.0,48958.0,24397.75,6.5279115818E10,0.3405468214636859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44808.0, +8,4,40,Uncorrelated,0.3892602119355255,22664.5,24797.5,34171.0,19645.25,4.5902822414E10,0.42123923687320614,3.0,3.0,0.0,879.0,1.0,3.0,1.0,0.0,31903.0,28808.0,22867.75,3.5694192774E10,0.4338024252415807,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,26395.75,31984.25,18557.0,4.2695044225E10,0.5822069499756681,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27235.0,37225.25,20566.75,5.6096563667E10,0.3892602119355255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34926.0, +8,4,40,Uncorrelated,0.343943351441539,24013.75,27063.5,36460.0,24006.0,5.2016885152E10,0.39739400740880515,243.0,243.0,0.0,0.0,1.2551440329218106,305.0,1.0,0.0,33676.5,29575.25,26195.75,3.4684248446E10,0.37818672969778827,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,26965.5,32032.0,18557.0,4.2743738356E10,0.5822069499756681,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27235.0,44367.0,25005.0,6.119833173E10,0.343943351441539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41543.5, +8,4,40,Uncorrelated,0.40229117896100014,23375.0,25762.0,37991.5,20754.25,5.8138359514E10,0.4153608606863575,53.0,53.0,0.0,8.0,1.3018867924528301,69.0,1.0,0.0,35106.5,31357.25,23013.25,3.4673853626E10,0.4606763958758779,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,28128.25,30178.0,17652.5,3.8594716889E10,0.5702644817452807,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,26369.0,43346.25,23288.5,5.4058574217E10,0.40229117896100014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39289.25, +8,4,40,Uncorrelated,0.38633261941525127,26584.5,27606.0,33150.5,20114.25,4.4884809738E10,0.4031179957164915,54.0,54.0,0.0,456.0,1.1481481481481481,62.0,1.0,0.0,30985.75,29834.5,25531.5,3.3660020764E10,0.40664441898690046,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,26327.0,29250.5,17652.5,3.766656352E10,0.5702644817452807,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,26369.0,34422.5,26696.5,3.7739241952E10,0.38633261941525127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31828.25, +8,4,40,Uncorrelated,0.3486676296259401,27475.0,29938.25,34174.0,23058.25,3.9785017799E10,0.3640085670169846,20.0,20.0,0.0,66.0,1.45,29.0,1.0,0.0,30870.0,32125.0,26439.75,3.3656341452E10,0.39379389350998656,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,28607.0,29283.5,17652.5,3.7693792564E10,0.5702644817452807,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,26369.0,44621.0,27140.5,7.1396348555E10,0.3486676296259401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41249.5, +8,4,40,Uncorrelated,0.3690093141405589,23032.5,26895.25,35175.75,20244.0,5.4047048762E10,0.38426059670269463,42.0,42.0,0.0,2484.0,1.2857142857142858,54.0,1.0,0.0,32113.0,31874.5,24633.25,4.0802574618E10,0.37799472032674203,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,28663.5,30125.25,17652.5,3.8541877025E10,0.5702644817452807,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,26369.0,46139.0,21531.25,5.7105739968E10,0.3690093141405589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43062.5, +8,4,40,Uncorrelated,0.3883747571848384,28890.75,28890.75,30586.5,20196.25,3.5688569912E10,0.4132489913831748,14.0,14.0,0.0,874.0,1.0,14.0,1.0,0.0,27268.25,30852.0,25641.75,3.3658058347E10,0.4230412910295363,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,27068.5,29270.75,17652.5,3.768725024E10,0.5702644817452807,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,26369.0,38240.75,21988.25,5.2009365234E10,0.3883747571848384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34683.75, +8,4,40,Uncorrelated,0.4006744455478318,27850.0,30281.75,37987.0,19488.75,5.2013903407E10,0.45309913935782853,207.0,207.0,0.0,2691.0,1.4444444444444444,299.0,1.0,0.0,34687.0,30845.5,26327.5,3.466692965E10,0.4146391923204237,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,27470.75,30319.5,17597.25,4.0784210199E10,0.5782543032108574,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27347.0,45640.0,25372.75,6.0175804563E10,0.4006744455478318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42186.0, +8,4,40,Uncorrelated,0.33977780536246277,26130.75,26130.75,33399.5,19894.5,4.0795255574E10,0.39688844753392916,79.0,79.0,0.0,14.0,1.3670886075949367,108.0,1.0,0.0,31040.5,32634.25,28273.75,3.9775648019E10,0.4055465905329361,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,28325.5,30338.0,17597.25,4.0793345604E10,0.5782543032108574,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27347.0,32114.75,21358.75,4.0765710898E10,0.33977780536246277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29305.75, +8,4,40,Uncorrelated,0.3751034425686859,28129.25,31869.75,41305.0,21622.75,6.0175845296E10,0.43575182058920886,112.0,112.0,0.0,434.0,1.625,182.0,1.0,0.0,37704.0,34412.0,24640.0,3.670577759E10,0.38598560079443894,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,30715.0,30846.25,17597.25,4.1302982699E10,0.5782543032108574,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27347.0,54554.75,26403.0,7.2406407328E10,0.3751034425686859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50239.0, +8,4,40,Uncorrelated,0.35249089705395564,27971.0,31905.25,35696.25,21644.25,4.2837287135E10,0.37557927838464084,133.0,133.0,0.0,297.0,1.2932330827067668,172.0,1.0,0.0,33370.0,29056.25,25205.25,3.5674736047E10,0.33837098642833496,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,25205.25,31178.0,17597.25,4.1633793808E10,0.5782543032108574,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27347.0,50995.0,24159.0,6.5276172387E10,0.35249089705395564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47429.5, +8,4,40,Uncorrelated,0.4212595167163191,27965.5,28944.5,32890.0,17891.0,4.3857309154E10,0.4671880172128434,104.0,104.0,0.0,0.0,1.2692307692307692,132.0,1.0,0.0,30595.5,28553.0,22621.0,3.5694444401E10,0.32691989407480965,20.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,25305.5,31082.5,17597.25,4.1533922122E10,0.5782543032108574,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,27347.0,41046.25,23697.25,4.9968138174E10,0.4212595167163191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38243.0, +8,4,40,Uncorrelated,0.40957567060164934,26511.25,26942.25,35693.5,17688.5,4.7945658464E10,0.42984361638342,80.0,80.0,0.0,0.0,1.25,100.0,1.0,0.0,32544.5,33659.75,27118.5,3.5700918702E10,0.42710125126551796,15.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,29232.0,33006.0,19843.5,3.7852341199E10,0.5264554685119475,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,28537.75,36705.0,24229.25,4.7927572811E10,0.40957567060164934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32429.75, +8,4,40,Uncorrelated,0.33073513077837957,29464.5,29742.25,34170.25,22365.25,4.2843570594E10,0.35858144038058914,76.0,76.0,0.0,4653.0,1.5657894736842106,119.0,1.0,0.0,29751.0,30088.5,25793.5,3.9779079321E10,0.3172690368302584,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,27545.25,31899.25,19843.5,3.6754798156E10,0.5264554685119475,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,28537.75,41044.5,29430.75,5.6088037717E10,0.33073513077837957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37265.0, +8,4,40,Uncorrelated,0.3800485565723385,30742.5,34659.5,35448.0,21489.25,4.8964156423E10,0.4610810226367988,140.0,140.0,0.0,0.0,1.55,217.0,1.0,0.0,32142.0,37735.0,22282.5,5.2016019072E10,0.4125834258922516,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,34195.5,31898.0,19843.5,3.6743975004E10,0.5264554685119475,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,28537.75,54055.75,28107.25,7.1396848453E10,0.3800485565723385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49340.5, +8,4,40,Uncorrelated,0.36301443919124804,25271.25,27688.0,37481.0,21303.75,5.5077018063E10,0.3962963327009839,122.0,122.0,0.0,28.0,1.0,122.0,1.0,0.0,34695.0,35182.75,25785.75,4.1805790138E10,0.38623116466968754,8.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,32125.5,31917.25,19843.5,3.6763624663E10,0.5264554685119475,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,28537.75,42316.0,22927.5,6.2206585431E10,0.36301443919124804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39157.25, +8,4,40,Uncorrelated,0.3266461562656654,25049.0,28260.5,33657.5,21167.75,4.0796891533E10,0.362385366189292,16.0,16.0,0.0,640.0,1.5,24.0,1.0,0.0,30151.0,35439.0,23473.0,4.4875229276E10,0.3535095393023187,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,32193.5,31932.75,19843.5,3.6772842829E10,0.5264554685119475,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,28537.75,44093.25,22711.0,6.118726407E10,0.3266461562656654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40753.5, +8,4,40,Uncorrelated,0.42402487714987713,34039.25,38409.0,40023.0,19767.0,4.9969049401E10,0.4186597819410319,170.0,170.0,0.0,13.0,1.1764705882352942,200.0,1.0,0.0,36273.5,39513.0,29194.5,4.8944714514E10,0.3542594441031941,12.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,35796.0,34171.0,21149.75,4.3862407699E10,0.5551097972972973,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,30934.0,55329.5,25713.0,8.4656105254E10,0.42402487714987713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51417.0, +8,4,40,Uncorrelated,0.4011248464373464,24652.5,28452.0,37480.0,20833.5,4.9976734733E10,0.41767122235872234,91.0,91.0,0.0,840.0,1.3076923076923077,119.0,1.0,0.0,34081.0,31616.25,28019.5,3.5697029976E10,0.3684543918918919,20.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,28019.5,34940.5,21149.75,4.4633981095E10,0.5551097972972973,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,30934.0,43586.5,22929.25,5.8115756028E10,0.4011248464373464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39815.0, +8,4,40,Uncorrelated,0.37953969594594594,26806.75,30940.75,36195.5,22442.25,6.2189245951E10,0.4870143581081081,344.0,344.0,0.0,14.0,1.752906976744186,603.0,1.0,0.0,33320.0,33398.75,26513.5,3.9774396536E10,0.3502956081081081,13.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,29515.0,34588.0,21149.75,4.4273801706E10,0.5551097972972973,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,30934.0,53543.75,27949.0,7.138499411E10,0.37953969594594594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49619.0, +8,4,40,Uncorrelated,0.3701915694103194,29567.5,29965.75,37480.25,21269.75,5.5076995897E10,0.4044552364864865,52.0,52.0,0.0,11.0,1.5576923076923077,81.0,1.0,0.0,34649.5,34163.0,26948.75,3.6714713072E10,0.39535664926289926,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,30306.0,35108.5,21149.75,4.4792471784E10,0.5551097972972973,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,30934.0,36965.25,27511.5,4.7936666789E10,0.3701915694103194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33061.0, +8,4,40,Uncorrelated,0.43386248464373467,29699.0,31723.75,38243.25,20582.25,4.9974921619E10,0.46664811117936117,61.0,61.0,0.0,32.0,1.819672131147541,111.0,1.0,0.0,34830.5,32877.0,22888.5,5.0984185591E10,0.43771114864864863,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,30223.5,35110.75,21149.75,4.4801777314E10,0.5551097972972973,40.0,40.0,0.0,0.0,1.0,40.0,0.0,0.0,30934.0,42580.75,27425.75,6.935812015E10,0.43386248464373467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39606.5, diff --git a/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-80.csv b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-80.csv new file mode 100644 index 0000000000000000000000000000000000000000..373aa4da431727113df74c1e39db8a15c27752eb --- /dev/null +++ b/experiments/consumer/data/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-80.csv @@ -0,0 +1,26 @@ +m,l,n,randomGenerationRule,InitialLocalAvailabilityRatio,InitialGlobalFlowtime,InitialSimulatedFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime00MeanRealFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime01MeanGlobalFlowtime,DecentralizedConsumerMultiDelegationGlobalFlowtime02SolvingTime,DecentralizedConsumerMultiDelegationGlobalFlowtime03LocalRatio,DecentralizedConsumerMultiDelegationGlobalFlowtime04NbDeals,DecentralizedConsumerMultiDelegationGlobalFlowtime05NbDelegations,DecentralizedConsumerMultiDelegationGlobalFlowtime06NbSwaps,DecentralizedConsumerMultiDelegationGlobalFlowtime07NbTimeouts,DecentralizedConsumerMultiDelegationGlobalFlowtime08EndowmentSize,DecentralizedConsumerMultiDelegationGlobalFlowtime09NbDelegatedTasks,DecentralizedConsumerMultiDelegationGlobalFlowtime10NbFirstStages,DecentralizedConsumerMultiDelegationGlobalFlowtime11NbSecondStages,DecentralizedConsumerMultiDelegationGlobalFlowtime12MeanSimulatedFlowtime,PSI00MeanRealFlowtime,PSI01MeanGlobalFlowtime,PSI02SolvingTime,PSI03LocalRatio,PSI04NbDeals,PSI05NbDelegations,PSI06NbSwaps,PSI07NbTimeouts,PSI08EndowmentSize,PSI09NbDelegatedTasks,PSI10NbFirstStages,PSI11NbSecondStages,PSI12MeanSimulatedFlowtime,SSI00MeanRealFlowtime,SSI01MeanGlobalFlowtime,SSI02SolvingTime,SSI03LocalRatio,SSI04NbDeals,SSI05NbDelegations,SSI06NbSwaps,SSI07NbTimeouts,SSI08EndowmentSize,SSI09NbDelegatedTasks,SSI10NbFirstStages,SSI11NbSecondStages,SSI12MeanSimulatedFlowtime,Consumer00MeanRealFlowtime,Consumer01MeanGlobalFlowtime,Consumer02SolvingTime,Consumer03LocalRatio,Consumer04NbDeals,Consumer05NbDelegations,Consumer06NbSwaps,Consumer07NbTimeouts,Consumer08EndowmentSize,Consumer09NbDelegatedTasks,Consumer10NbFirstStages,Consumer11NbSecondStages,Consumer12MeanSimulatedFlowtime, +8,4,80,Uncorrelated,0.3502680683812867,58606.0,60730.75,77278.25,41148.0,1.04064119806E11,0.45915057620392274,771.0,771.0,0.0,8066.0,1.6900129701686122,1303.0,1.0,0.0,72362.0,63737.75,49105.75,7.6478628237E10,0.37985098832328473,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,58128.75,73302.75,38615.25,8.298835811E10,0.5825145004960696,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57584.75,94860.5,52241.25,1.10163940565E11,0.3502680683812867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86715.75, +8,4,80,Uncorrelated,0.35375009539800045,53680.75,58381.0,75471.5,39730.25,8.975068154E10,0.4292671525604823,50.0,50.0,0.0,421.0,1.5,75.0,1.0,0.0,69170.5,79810.0,45115.75,8.8739075625E10,0.3809480653285507,22.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,73730.0,72769.25,38615.25,8.246049767E10,0.5825145004960696,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57584.75,103784.0,49430.0,1.4381996112E11,0.35375009539800045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95929.5, +8,4,80,Uncorrelated,0.421974930292145,49300.75,52268.5,57382.75,38635.5,7.9585639535E10,0.4680549624456781,540.0,540.0,0.0,572.0,1.487037037037037,803.0,1.0,0.0,52670.0,60189.5,47656.0,7.9571800633E10,0.4393629581250471,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,53897.25,70998.0,36752.25,9.4459989251E10,0.5781858373734583,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,55511.5,94093.0,50054.0,1.19346391316E11,0.421974930292145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85706.5, +8,4,80,Uncorrelated,0.3432691100002512,58785.25,62233.0,66803.75,36691.0,9.5875431311E10,0.442814438945967,295.0,295.0,0.0,1008.0,1.3796610169491526,407.0,1.0,0.0,61879.75,62215.25,47757.5,8.4656567621E10,0.3519656359114773,27.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,56229.75,79293.75,36752.25,1.02753700481E11,0.5781858373734583,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,55511.5,90016.25,46457.25,1.45856196271E11,0.3432691100002512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83214.5, +8,4,80,Uncorrelated,0.36668961039595016,50588.25,53005.25,72189.0,39681.5,1.06103589983E11,0.38013854107171624,95.0,95.0,0.0,5795.0,1.4,133.0,1.0,0.0,66878.5,67061.75,41425.5,8.058761364E10,0.39726335007737407,29.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,61654.75,81657.0,35875.75,9.8489083164E10,0.5801004642443947,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,66742.0,78543.5,48112.0,1.12205940859E11,0.36668961039595016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70807.5, +8,4,80,Uncorrelated,0.364800413963456,45573.25,48090.0,62220.75,39084.5,8.1602974071E10,0.42958471849996827,653.0,653.0,0.0,1957.0,1.3614088820826953,889.0,1.0,0.0,57250.75,58140.5,49301.25,7.2422520145E10,0.3833506631714092,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,53739.75,89012.0,35875.75,1.0584407089E11,0.5801004642443947,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,66742.0,83119.5,45270.75,1.01984409554E11,0.364800413963456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77156.0, +8,4,80,Uncorrelated,0.3899022982405596,45181.25,47934.25,70153.5,43909.25,9.0816413454E10,0.45238492370367,653.0,653.0,0.0,385.0,1.1301684532924963,738.0,1.0,0.0,64307.0,61708.25,50406.75,7.7521215115E10,0.3536166835989426,28.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,55350.5,75492.0,35216.0,8.7221705802E10,0.5712292832340141,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,60205.0,87213.75,45212.5,1.03027018701E11,0.3899022982405596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80009.0, +8,4,80,Uncorrelated,0.34973489615713155,51836.75,53491.75,63732.5,39602.75,7.9542718655E10,0.45040359469691227,409.0,409.0,0.0,4617.0,1.5599022004889975,638.0,1.0,0.0,58321.75,68847.25,52566.0,8.7719548457E10,0.333570890637715,21.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,62115.75,75321.0,35216.0,8.7053755469E10,0.5712292832340141,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,60205.0,82874.5,47101.75,1.24440299514E11,0.34973489615713155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77120.0, +8,4,80,Uncorrelated,0.3712609570585627,62268.0,62268.0,70903.25,42405.25,8.773749529E10,0.44347643897423905,266.0,266.0,0.0,20038.0,1.4097744360902256,375.0,1.0,0.0,65681.5,65282.0,45728.75,8.4661980239E10,0.3705008453806162,28.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,60512.0,79189.5,37974.5,9.8570996043E10,0.588940375085878,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,63635.5,79812.5,51407.0,8.7717908673E10,0.3712609570585627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73000.0, +8,4,80,Uncorrelated,0.37700077472921023,49723.0,50403.75,70859.0,43122.25,9.2743760848E10,0.45518508232106925,505.0,505.0,0.0,87.0,1.5306930693069307,773.0,1.0,0.0,65088.5,65784.0,48146.75,7.4453592022E10,0.4248098502677445,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,59921.75,79038.5,37974.5,9.8419644686E10,0.588940375085878,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,63635.5,84654.5,46661.5,1.05049490292E11,0.37700077472921023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77147.0, +8,4,80,Uncorrelated,0.40120253565459746,52728.25,54680.0,73696.5,40896.0,1.14243804034E11,0.42825958788304025,36.0,36.0,0.0,3.0,1.5,54.0,1.0,0.0,67791.0,75994.0,54479.75,8.8746096051E10,0.36620329089376463,17.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,69214.25,86558.0,37974.5,1.05941154743E11,0.588940375085878,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,63635.5,87466.0,47680.5,1.17302739017E11,0.40120253565459746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80100.75, +8,4,80,Uncorrelated,0.3650241432907963,58544.25,61281.0,75981.75,39662.75,1.12191410701E11,0.40303459969887884,83.0,83.0,0.0,310.0,1.2289156626506024,102.0,1.0,0.0,69824.5,67821.75,46632.25,9.0769352833E10,0.37477890982444345,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,61932.5,87350.75,37974.5,1.06732923566E11,0.588940375085878,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,63635.5,84140.25,47960.75,1.35652593733E11,0.3650241432907963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76635.5, +8,4,80,Uncorrelated,0.3578323174148407,51640.25,53686.5,74194.25,41945.75,1.03010674825E11,0.450692627403975,742.0,742.0,0.0,3870.0,1.3935309973045822,1034.0,1.0,0.0,70365.5,71655.0,49472.0,1.03021656469E11,0.36504850584457665,16.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,66108.25,79297.25,37974.5,9.8677950605E10,0.588940375085878,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,63635.5,98935.5,49503.25,1.2341727491E11,0.3578323174148407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91846.5, +8,4,80,Uncorrelated,0.36781289569729625,71985.0,76426.25,68105.75,39844.75,8.3672609515E10,0.43841894877970056,440.0,440.0,0.0,2977.0,2.515909090909091,1107.0,1.0,0.0,62613.0,84410.5,51248.25,1.23428522307E11,0.3680760731931375,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,77297.0,81600.5,34812.5,1.07607851646E11,0.5627281078531171,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,65957.5,99194.25,54326.0,1.8052777543E11,0.36781289569729625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91916.75, +8,4,80,Uncorrelated,0.3353491492096329,53598.0,57728.5,60418.5,42987.0,8.3638674184E10,0.4021322245492578,506.0,506.0,0.0,2262.0,1.7826086956521738,902.0,1.0,0.0,55510.5,66550.75,46958.75,9.4857230579E10,0.372693802518319,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,59440.25,74589.5,34916.5,8.9126064208E10,0.5472709676428268,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,58026.0,104009.25,47842.25,1.38678738511E11,0.3353491492096329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95684.5, +8,4,80,Uncorrelated,0.4034867038473974,49363.25,50553.5,67571.0,40172.25,9.4858363814E10,0.5000555690268348,504.0,504.0,0.0,11733.0,1.7361111111111112,875.0,1.0,0.0,61618.0,68081.0,42834.5,7.955741466E10,0.3961212819269318,24.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,62191.5,72358.0,36392.5,9.3265204009E10,0.5591860653087617,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57179.5,74715.0,48879.0,9.8943461724E10,0.4034867038473974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67899.25, +8,4,80,Uncorrelated,0.32744806821855804,47764.25,48953.0,81578.5,37970.75,9.7901038571E10,0.4049163433559651,92.0,92.0,0.0,2280.0,1.3695652173913044,126.0,1.0,0.0,73678.5,63235.0,45119.5,7.13925072E10,0.365891731328807,26.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,57704.5,81364.0,36392.5,1.0228153494E11,0.5591860653087617,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57179.5,80584.0,44120.0,1.06086322603E11,0.32744806821855804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73670.5, +8,4,80,Uncorrelated,0.39408543485289366,50858.5,54021.0,62981.75,38581.75,8.4649395325E10,0.4971003071451665,828.0,828.0,0.0,270.0,1.3876811594202898,1149.0,1.0,0.0,56828.0,56605.75,43914.0,8.0578663065E10,0.3888669980601358,20.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,52183.25,75974.5,36392.5,9.6886479483E10,0.5591860653087617,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57179.5,93316.0,46449.25,1.22385130599E11,0.39408543485289366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85700.0, +8,4,80,Uncorrelated,0.37490401713546717,48461.0,50626.5,70867.25,40784.5,8.4624386972E10,0.44481995635305527,308.0,308.0,0.0,219.0,1.4610389610389611,450.0,1.0,0.0,64053.5,65275.25,45010.5,7.9548587558E10,0.37633870837374717,19.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,59798.25,72444.5,36391.5,9.3356475916E10,0.5591860653087617,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57178.5,90012.5,45567.5,1.07103811002E11,0.37490401713546717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81647.5, +8,4,80,Uncorrelated,0.3723658000258699,47741.25,51208.5,60432.0,41994.75,7.4442806255E10,0.4562359332557237,444.0,444.0,0.0,111.0,1.7905405405405406,795.0,1.0,0.0,55344.5,73692.0,51740.5,8.159854882E10,0.3767015909972837,14.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,66978.5,78185.0,30408.5,9.8836190774E10,0.6058414176691244,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,55023.0,92047.0,47648.75,1.1319402003E11,0.3723658000258699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85189.5, +8,4,80,Uncorrelated,0.34084525541545424,58551.25,58551.25,67597.25,38045.0,1.05098133256E11,0.40344123827998707,726.0,726.0,0.0,3337.0,1.6887052341597797,1226.0,1.0,0.0,62494.5,57638.75,42546.5,7.447442549E10,0.35680872130617525,23.0,23.0,0.0,0.0,0.0,0.0,0.0,0.0,51997.75,78522.0,36392.5,9.9433854732E10,0.5591860653087617,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,57179.5,74716.5,49420.75,9.4867766454E10,0.34084525541545424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68226.0, +8,4,80,Uncorrelated,0.34214679738629294,47952.0,48831.75,58936.5,42295.25,7.7563813393E10,0.42583272069219025,599.0,599.0,0.0,3424.0,1.7161936560934892,1028.0,1.0,0.0,52873.75,64520.0,45875.25,9.588805253E10,0.3776816973672711,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,58660.75,68343.25,34005.25,8.5429146874E10,0.5724861577375291,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,53038.75,72632.0,45404.75,9.3797757882E10,0.34214679738629294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66058.75, +8,4,80,Uncorrelated,0.3802059502449708,44688.25,48614.75,67301.5,37956.75,8.566089788E10,0.4479237891554806,586.0,586.0,0.0,857.0,1.1689419795221843,685.0,1.0,0.0,61462.0,57369.0,44593.0,7.7516478911E10,0.3993152128649499,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,52040.25,73766.75,34005.25,9.0852790078E10,0.5724861577375291,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,53038.75,79803.25,41235.25,1.10149241259E11,0.3802059502449708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73533.5, +8,4,80,Uncorrelated,0.4004770889349298,51058.5,53740.0,74957.5,39014.0,1.12185565476E11,0.4205477268871489,273.0,273.0,0.0,44.0,1.4835164835164836,405.0,1.0,0.0,69585.5,62980.75,47782.75,7.955782743E10,0.4295342727735421,31.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,55846.0,75472.5,34005.25,9.2559780015E10,0.5724861577375291,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,53038.75,87977.5,46424.5,1.2546521028E11,0.4004770889349298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81002.0, +8,4,80,Uncorrelated,0.36912185817914483,45015.75,49910.5,66543.0,41051.0,8.5662314413E10,0.426542184841116,931.0,931.0,0.0,2730.0,1.2620837808807734,1175.0,1.0,0.0,61946.5,67062.0,45478.0,8.5678883739E10,0.37385161917198334,25.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,60353.0,69101.75,34005.25,8.6150847527E10,0.5724861577375291,80.0,80.0,0.0,0.0,1.0,80.0,0.0,0.0,53038.75,92049.0,43865.0,1.06075653249E11,0.36912185817914483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86468.0, diff --git a/experiments/consumer/figures/consumption4jobs8nodes5staps5allocations040-320tasks.svg b/experiments/consumer/figures/consumption4jobs8nodes5staps5allocations040-320tasks.svg index 4b552c228234d0c09f4c5853a0b1cbbd9288723b..c958c2d33f35a03edba5d1935ec744375f93dd15 100644 --- a/experiments/consumer/figures/consumption4jobs8nodes5staps5allocations040-320tasks.svg +++ b/experiments/consumer/figures/consumption4jobs8nodes5staps5allocations040-320tasks.svg @@ -59,11 +59,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,373.63 L574.82,373.63 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,376.63 L574.82,376.63 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,373.63 L81.53,373.63 '/> <g transform="translate(64.14,377.53)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,376.63 L81.53,376.63 '/> <g transform="translate(64.14,380.53)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 0.5</tspan></text> </g> </g> @@ -72,11 +72,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,324.86 L574.82,324.86 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,330.86 L574.82,330.86 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,324.86 L81.53,324.86 '/> <g transform="translate(64.14,328.76)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,330.86 L81.53,330.86 '/> <g transform="translate(64.14,334.76)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 1</tspan></text> </g> </g> @@ -85,11 +85,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,276.09 L574.82,276.09 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,285.09 L574.82,285.09 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,276.09 L81.53,276.09 '/> <g transform="translate(64.14,279.99)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,285.09 L81.53,285.09 '/> <g transform="translate(64.14,288.99)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 1.5</tspan></text> </g> </g> @@ -98,11 +98,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,227.32 L574.82,227.32 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,239.32 L574.82,239.32 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,227.32 L81.53,227.32 '/> <g transform="translate(64.14,231.22)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,239.32 L81.53,239.32 '/> <g transform="translate(64.14,243.22)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 2</tspan></text> </g> </g> @@ -111,11 +111,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,178.55 L574.82,178.55 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,193.55 L574.82,193.55 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,178.55 L81.53,178.55 '/> <g transform="translate(64.14,182.45)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,193.55 L81.53,193.55 '/> <g transform="translate(64.14,197.45)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 2.5</tspan></text> </g> </g> @@ -124,11 +124,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,129.78 L574.82,129.78 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,147.78 L574.82,147.78 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,129.78 L81.53,129.78 '/> <g transform="translate(64.14,133.68)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,147.78 L81.53,147.78 '/> <g transform="translate(64.14,151.68)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 3</tspan></text> </g> </g> @@ -137,11 +137,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,81.01 L574.82,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,102.01 L574.82,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,81.01 L81.53,81.01 '/> <g transform="translate(64.14,84.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <path stroke='black' d='M72.53,102.01 L81.53,102.01 '/> <g transform="translate(64.14,105.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> <text><tspan font-family="Arial" > 3.5</tspan></text> </g> </g> @@ -150,11 +150,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,422.40 L72.53,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,422.40 L72.53,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,422.40 L72.53,413.40 M72.53,81.01 L72.53,90.01 '/> <g transform="translate(72.53,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M72.53,422.40 L72.53,413.40 M72.53,102.01 L72.53,111.01 '/> <g transform="translate(72.53,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 0</tspan></text> </g> </g> @@ -163,11 +163,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M142.29,422.40 L142.29,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M142.29,422.40 L142.29,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M142.29,422.40 L142.29,413.40 M142.29,81.01 L142.29,90.01 '/> <g transform="translate(142.29,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M142.29,422.40 L142.29,413.40 M142.29,102.01 L142.29,111.01 '/> <g transform="translate(142.29,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 50</tspan></text> </g> </g> @@ -176,11 +176,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M212.06,422.40 L212.06,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M212.06,422.40 L212.06,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M212.06,422.40 L212.06,413.40 M212.06,81.01 L212.06,90.01 '/> <g transform="translate(212.06,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M212.06,422.40 L212.06,413.40 M212.06,102.01 L212.06,111.01 '/> <g transform="translate(212.06,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 100</tspan></text> </g> </g> @@ -189,11 +189,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M281.82,422.40 L281.82,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M281.82,422.40 L281.82,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M281.82,422.40 L281.82,413.40 M281.82,81.01 L281.82,90.01 '/> <g transform="translate(281.82,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M281.82,422.40 L281.82,413.40 M281.82,102.01 L281.82,111.01 '/> <g transform="translate(281.82,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 150</tspan></text> </g> </g> @@ -202,11 +202,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M351.58,422.40 L351.58,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M351.58,422.40 L351.58,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M351.58,422.40 L351.58,413.40 M351.58,81.01 L351.58,90.01 '/> <g transform="translate(351.58,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M351.58,422.40 L351.58,413.40 M351.58,102.01 L351.58,111.01 '/> <g transform="translate(351.58,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 200</tspan></text> </g> </g> @@ -215,11 +215,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M421.34,422.40 L421.34,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M421.34,422.40 L421.34,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M421.34,422.40 L421.34,413.40 M421.34,81.01 L421.34,90.01 '/> <g transform="translate(421.34,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M421.34,422.40 L421.34,413.40 M421.34,102.01 L421.34,111.01 '/> <g transform="translate(421.34,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 250</tspan></text> </g> </g> @@ -228,11 +228,11 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.11,422.40 L491.11,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.11,422.40 L491.11,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M491.11,422.40 L491.11,413.40 M491.11,81.01 L491.11,90.01 '/> <g transform="translate(491.11,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M491.11,422.40 L491.11,413.40 M491.11,102.01 L491.11,111.01 '/> <g transform="translate(491.11,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 300</tspan></text> </g> </g> @@ -241,20 +241,20 @@ <g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M560.87,422.40 L560.87,81.01 '/></g> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M560.87,422.40 L560.87,102.01 '/></g> <g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M560.87,422.40 L560.87,413.40 M560.87,81.01 L560.87,90.01 '/> <g transform="translate(560.87,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <path stroke='black' d='M560.87,422.40 L560.87,413.40 M560.87,102.01 L560.87,111.01 '/> <g transform="translate(560.87,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> <text><tspan font-family="Arial" > 350</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,81.01 L72.53,422.40 L574.82,422.40 L574.82,81.01 L72.53,81.01 Z '/></g> + <path stroke='black' d='M72.53,102.01 L72.53,422.40 L574.82,422.40 L574.82,102.01 L72.53,102.01 Z '/></g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(20.48,251.71) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="16.00" text-anchor="middle"> + <g transform="translate(20.48,262.21) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="16.00" text-anchor="middle"> <text><tspan font-family="Arial" >Flowtime (mins)</tspan></text> </g> </g> @@ -268,7 +268,7 @@ <g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '128.34,387.09 184.15,354.00 239.96,324.54 295.77,291.82 351.58,256.94 407.39,225.51 463.20,183.61 519.01,152.12 519.01,132.22 463.20,167.85 407.39,209.73 351.58,246.22 295.77,282.70 239.96,318.34 184.15,351.10 128.34,384.67 + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '128.34,389.26 184.15,358.21 239.96,330.56 295.77,299.86 351.58,267.12 407.39,237.62 463.20,198.30 519.01,168.75 519.01,150.07 463.20,183.51 407.39,222.81 351.58,257.06 295.77,291.30 239.96,324.74 184.15,355.49 128.34,386.99 '/> </g> </g> @@ -280,13 +280,13 @@ </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 50, 166, 140)' d='M265.72,19.50 L313.88,19.50 M128.34,385.51 L184.15,351.94 L239.96,321.25 L295.77,285.86 L351.58,251.18 L407.39,222.57 - L463.20,174.02 L519.01,142.58 '/></g> + <path stroke='rgb( 50, 166, 140)' d='M265.72,19.50 L313.88,19.50 M128.34,387.78 L184.15,356.27 L239.96,327.47 L295.77,294.26 L351.58,261.71 L407.39,234.86 + L463.20,189.30 L519.01,159.79 '/></g> </g> <g id="gnuplot_plot_3" fill="none"><title>gnuplot_plot_3</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '128.34,384.27 184.15,347.37 239.96,312.55 295.77,271.50 351.58,231.29 407.39,187.37 463.20,146.72 519.01,114.42 519.01,89.91 463.20,126.27 407.39,175.73 351.58,219.27 295.77,258.65 239.96,302.18 184.15,344.06 128.34,380.13 + <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '128.34,386.62 184.15,351.99 239.96,319.31 295.77,280.78 351.58,243.05 407.39,201.83 463.20,163.68 519.01,133.36 519.01,110.36 463.20,144.48 407.39,190.90 351.58,231.76 295.77,268.73 239.96,309.58 184.15,348.88 128.34,382.73 '/> </g> </g> @@ -298,13 +298,13 @@ </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 88, 98, 237)' d='M265.72,40.50 L313.88,40.50 M128.34,381.78 L184.15,346.54 L239.96,310.50 L295.77,266.15 L351.58,226.31 L407.39,180.39 - L463.20,138.84 L519.01,99.46 '/></g> + <path stroke='rgb( 88, 98, 237)' d='M265.72,40.50 L313.88,40.50 M128.34,384.28 L184.15,351.20 L239.96,317.38 L295.77,275.76 L351.58,238.37 L407.39,195.28 + L463.20,156.28 L519.01,119.32 '/></g> </g> <g id="gnuplot_plot_5" fill="none"><title>gnuplot_plot_5</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '128.34,384.84 184.15,336.37 239.96,256.12 295.77,100.00 299.59,81.01 285.45,81.01 239.96,246.26 184.15,323.49 128.34,383.36 '/> + <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '128.34,387.15 184.15,341.66 239.96,266.35 295.77,119.83 299.59,102.01 285.45,102.01 239.96,257.10 184.15,329.58 128.34,385.76 '/> </g> </g> </g> @@ -315,70 +315,88 @@ </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 0, 0, 0)' d='M265.72,61.50 L313.88,61.50 M128.34,384.65 L184.15,334.15 L239.96,252.84 L295.77,92.50 L298.10,81.01 '/></g> + <path stroke='rgb( 0, 0, 0)' d='M265.72,61.50 L313.88,61.50 M128.34,386.98 L184.15,339.58 L239.96,263.27 L295.77,112.79 L298.10,102.01 '/></g> </g> <g id="gnuplot_plot_7" fill="none"><title>gnuplot_plot_7</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '128.34,376.80 184.15,334.52 239.96,297.68 295.77,264.06 351.58,222.61 407.39,178.65 463.20,141.78 519.01,111.89 519.01,92.43 463.20,128.50 407.39,168.28 351.58,208.92 295.77,247.87 239.96,289.33 184.15,327.88 128.34,371.82 + <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '128.34,379.61 184.15,339.92 239.96,305.35 295.77,273.80 351.58,234.90 407.39,193.64 463.20,159.04 519.01,130.99 519.01,112.73 463.20,146.58 407.39,183.91 351.58,222.05 295.77,258.61 239.96,297.52 184.15,333.69 128.34,374.93 '/> </g> </g> </g> <g id="gnuplot_plot_8" ><title>CR(A0)</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(460.73,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(255.93,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">R</tspan><tspan font-family="Arial" font-size="14.0" dy="7.00px">(A0)</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb(252, 83, 92)' d='M470.52,19.50 L518.68,19.50 M128.34,374.32 L184.15,332.08 L239.96,293.06 L295.77,256.58 L351.58,218.03 L407.39,172.04 - L463.20,135.53 L519.01,101.12 '/></g> + <path stroke='rgb(252, 83, 92)' d='M265.72,82.50 L313.88,82.50 M128.34,377.28 L184.15,337.64 L239.96,301.02 L295.77,266.78 L351.58,230.60 L407.39,187.44 + L463.20,153.18 L519.01,120.88 '/></g> </g> <g id="gnuplot_plot_9" fill="none"><title>gnuplot_plot_9</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '128.34,391.71 184.15,362.66 239.96,336.65 295.77,308.24 351.58,278.78 407.39,251.68 463.20,210.80 519.01,187.14 519.01,171.13 463.20,204.40 407.39,238.46 351.58,270.34 295.77,301.06 239.96,333.02 184.15,360.33 128.34,389.43 + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '128.34,393.60 184.15,366.33 239.96,341.93 295.77,315.27 351.58,287.62 407.39,262.18 463.20,223.81 519.01,201.61 519.01,186.59 463.20,217.81 407.39,249.77 351.58,279.70 295.77,308.53 239.96,338.52 184.15,364.15 128.34,391.46 '/> </g> </g> </g> <g id="gnuplot_plot_10" ><title>CSE(Ae) for bargaining</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(460.73,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(460.73,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">E</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for bargaining</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 50, 166, 140)' stroke-dasharray='2.5,4.0' d='M470.52,40.50 L518.68,40.50 M128.34,390.62 L184.15,361.19 L239.96,334.80 L295.77,303.35 L351.58,276.45 L407.39,246.01 - L463.20,208.65 L519.01,180.06 '/></g> + <path stroke='rgb( 50, 166, 140)' stroke-dasharray='2.5,4.0' d='M470.52,19.50 L518.68,19.50 M128.34,392.57 L184.15,364.95 L239.96,340.19 L295.77,310.67 L351.58,285.43 L407.39,256.86 + L463.20,221.80 L519.01,194.96 '/></g> </g> <g id="gnuplot_plot_11" fill="none"><title>gnuplot_plot_11</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> <g stroke='none' shape-rendering='crispEdges'> - <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '128.34,392.25 184.15,365.40 239.96,338.57 295.77,316.21 351.58,286.78 407.39,266.93 463.20,242.69 519.01,215.13 519.01,195.96 463.20,230.91 407.39,257.88 351.58,283.82 295.77,311.67 239.96,333.83 184.15,360.38 128.34,390.61 + <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '128.34,394.11 184.15,368.91 239.96,343.73 295.77,322.74 351.58,295.13 407.39,276.49 463.20,253.74 519.01,227.88 519.01,209.89 463.20,242.69 407.39,268.00 351.58,292.34 295.77,318.48 239.96,339.28 184.15,364.19 128.34,392.57 '/> </g> </g> </g> <g id="gnuplot_plot_12" ><title>CSE(Ae) for SSI</title> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <g transform="translate(460.73,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <g transform="translate(460.73,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">E</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for SSI</tspan></text> </g> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='rgb( 0, 0, 0)' stroke-dasharray='2.5,4.0' d='M470.52,61.50 L518.68,61.50 M128.34,392.19 L184.15,360.41 L239.96,336.62 L295.77,314.22 L351.58,285.74 L407.39,261.19 - L463.20,236.44 L519.01,206.54 '/></g> + <path stroke='rgb( 0, 0, 0)' stroke-dasharray='2.5,4.0' d='M470.52,40.50 L518.68,40.50 M128.34,394.05 L184.15,364.22 L239.96,341.89 L295.77,320.88 L351.58,294.14 L407.39,271.11 + L463.20,247.88 L519.01,219.82 '/></g> + </g> + <g id="gnuplot_plot_13" fill="none"><title>gnuplot_plot_13</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '128.34,390.90 184.15,361.18 239.96,332.18 295.77,299.10 351.58,266.80 407.39,230.76 463.20,197.99 519.01,169.20 519.01,150.70 463.20,180.57 407.39,221.16 351.58,256.23 295.77,289.66 239.96,323.52 184.15,357.74 128.34,388.49 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_14" ><title>CSE(Ae) for PSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(460.73,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">E</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for PSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 88, 98, 237)' stroke-dasharray='2.5,4.0' d='M470.52,61.50 L518.68,61.50 M128.34,389.16 L184.15,359.63 L239.96,330.04 L295.77,295.14 L351.58,261.82 L407.39,223.59 + L463.20,191.34 L519.01,159.17 '/></g> </g> -<g fill="none" color="white" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> +<g fill="none" color="white" stroke="rgb( 88, 98, 237)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> - <path stroke='black' d='M72.53,81.01 L72.53,422.40 L574.82,422.40 L574.82,81.01 L72.53,81.01 Z '/></g> + <path stroke='black' d='M72.53,102.01 L72.53,422.40 L574.82,422.40 L574.82,102.01 L72.53,102.01 Z '/></g> <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> </g> </g> diff --git a/experiments/consumer/figures/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.svg b/experiments/consumer/figures/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3c39b88beeb6bb0db7ff17ce3ba6540869ccf08 --- /dev/null +++ b/experiments/consumer/figures/consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.svg @@ -0,0 +1,404 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<svg + width="600" height="480" + viewBox="0 0 600 480" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" +> + +<title>Gnuplot</title> +<desc>Produced by GNUPLOT 5.4 patchlevel 6 </desc> + +<g id="gnuplot_canvas"> + +<rect x="0" y="0" width="600" height="480" fill="none"/> +<defs> + + <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/> + <path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/> + <path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/> + <path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/> + <rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/> + <rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/> + <circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/> + <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/> + <path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/> + <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/> + <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/> + <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/> + <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/> + <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/> + <path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/> + <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/> + <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'> + <feFlood flood-color='white' flood-opacity='1' result='bgnd'/> + <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/> + </filter> + <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'> + <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/> + <feComposite in='SourceGraphic' in2='grey' operator='atop'/> + </filter> +</defs> +<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,422.40 L574.82,422.40 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,422.40 L64.75,422.40 '/> <g transform="translate(47.36,426.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 0</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,376.63 L574.82,376.63 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,376.63 L64.75,376.63 '/> <g transform="translate(47.36,380.53)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 1</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,330.86 L574.82,330.86 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,330.86 L64.75,330.86 '/> <g transform="translate(47.36,334.76)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 2</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,285.09 L574.82,285.09 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,285.09 L64.75,285.09 '/> <g transform="translate(47.36,288.99)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 3</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,239.32 L574.82,239.32 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,239.32 L64.75,239.32 '/> <g transform="translate(47.36,243.22)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 4</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,193.55 L574.82,193.55 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,193.55 L64.75,193.55 '/> <g transform="translate(47.36,197.45)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 5</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,147.78 L574.82,147.78 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,147.78 L64.75,147.78 '/> <g transform="translate(47.36,151.68)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 6</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,102.01 L574.82,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,102.01 L64.75,102.01 '/> <g transform="translate(47.36,105.91)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end"> + <text><tspan font-family="Arial" > 7</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M55.75,422.40 L55.75,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,422.40 L55.75,413.40 M55.75,102.01 L55.75,111.01 '/> <g transform="translate(55.75,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 0</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M127.84,422.40 L127.84,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M127.84,422.40 L127.84,413.40 M127.84,102.01 L127.84,111.01 '/> <g transform="translate(127.84,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 50</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M199.94,422.40 L199.94,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M199.94,422.40 L199.94,413.40 M199.94,102.01 L199.94,111.01 '/> <g transform="translate(199.94,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 100</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M272.03,422.40 L272.03,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M272.03,422.40 L272.03,413.40 M272.03,102.01 L272.03,111.01 '/> <g transform="translate(272.03,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 150</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M344.12,422.40 L344.12,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M344.12,422.40 L344.12,413.40 M344.12,102.01 L344.12,111.01 '/> <g transform="translate(344.12,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 200</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M416.22,422.40 L416.22,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M416.22,422.40 L416.22,413.40 M416.22,102.01 L416.22,111.01 '/> <g transform="translate(416.22,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 250</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M488.31,422.40 L488.31,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M488.31,422.40 L488.31,413.40 M488.31,102.01 L488.31,111.01 '/> <g transform="translate(488.31,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 300</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M560.40,422.40 L560.40,102.01 '/></g> +<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M560.40,422.40 L560.40,413.40 M560.40,102.01 L560.40,111.01 '/> <g transform="translate(560.40,444.30)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle"> + <text><tspan font-family="Arial" > 350</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,102.01 L55.75,422.40 L574.82,422.40 L574.82,102.01 L55.75,102.01 Z '/></g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(20.48,262.21) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="16.00" text-anchor="middle"> + <text><tspan font-family="Arial" >Flowtime (mins)</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(315.28,472.60)" stroke="none" fill="black" font-family="Arial" font-size="16.00" text-anchor="middle"> + <text><tspan font-family="Arial" >Number of tasks</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> + <g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '113.42,396.33 171.10,373.78 228.77,346.35 286.45,319.13 344.12,291.90 401.80,262.52 459.47,236.93 517.15,208.84 517.15,197.96 459.47,221.87 401.80,252.58 344.12,278.85 286.45,313.28 228.77,339.37 171.10,366.18 113.42,393.81 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_2" ><title>CR(Ae) for bargaining</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(247.54,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">R</tspan><tspan font-family="Arial" font-size="14.0" dy="7.00px">(Ae) for bargaining</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 50, 166, 140)' d='M257.33,19.50 L305.49,19.50 M113.42,395.17 L171.10,370.45 L228.77,343.64 L286.45,316.03 L344.12,285.49 L401.80,258.65 + L459.47,230.39 L517.15,201.69 '/></g> + </g> + <g id="gnuplot_plot_3" fill="none"><title>gnuplot_plot_3</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '113.42,399.45 171.10,374.94 228.77,352.18 286.45,316.99 344.12,281.96 401.80,247.33 459.47,209.81 517.15,181.97 517.15,154.17 459.47,189.17 401.80,221.48 344.12,266.21 286.45,300.54 228.77,343.04 171.10,370.47 113.42,396.72 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_4" ><title>CR(Ae) for PSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(247.54,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">R</tspan><tspan font-family="Arial" font-size="14.0" dy="7.00px">(Ae) for PSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 88, 98, 237)' d='M257.33,40.50 L305.49,40.50 M113.42,398.09 L171.10,372.60 L228.77,346.93 L286.45,312.30 L344.12,273.78 L401.80,236.84 + L459.47,196.96 L517.15,170.69 '/></g> + </g> + <g id="gnuplot_plot_5" fill="none"><title>gnuplot_plot_5</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '113.42,399.26 171.10,366.48 228.77,318.27 286.45,228.89 343.12,102.01 335.68,102.01 286.45,218.41 228.77,312.07 171.10,361.91 113.42,397.96 '/> + </g> +</g> + </g> + <g id="gnuplot_plot_6" ><title>CR(Ae) for SSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(247.54,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">R</tspan><tspan font-family="Arial" font-size="14.0" dy="7.00px">(Ae) for SSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 0, 0, 0)' d='M257.33,61.50 L305.49,61.50 M113.42,398.56 L171.10,364.44 L228.77,312.93 L286.45,227.52 L341.68,102.01 '/></g> + </g> + <g id="gnuplot_plot_7" fill="none"><title>gnuplot_plot_7</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(255, 105, 65)' fill-opacity = '0.300000' points = '113.42,391.09 171.10,360.93 228.77,332.93 286.45,293.66 344.12,269.89 401.80,234.11 459.47,202.40 517.15,180.99 517.15,157.47 459.47,176.95 401.80,217.60 344.12,243.84 286.45,283.53 228.77,317.94 171.10,351.22 113.42,387.20 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_8" ><title>CR(A0)</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(247.54,87.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">R</tspan><tspan font-family="Arial" font-size="14.0" dy="7.00px">(A0)</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb(252, 83, 92)' d='M257.33,82.50 L305.49,82.50 M113.42,389.15 L171.10,355.68 L228.77,321.30 L286.45,290.55 L344.12,256.69 L401.80,222.86 + L459.47,189.37 L517.15,163.88 '/></g> + </g> + <g id="gnuplot_plot_9" fill="none"><title>gnuplot_plot_9</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb(137, 224, 177)' fill-opacity = '0.300000' points = '113.42,407.06 171.10,392.64 228.77,379.32 286.45,365.25 344.12,351.70 401.80,338.56 459.47,323.65 517.15,308.79 517.15,294.88 459.47,314.01 401.80,329.79 344.12,343.88 286.45,359.89 228.77,375.83 171.10,390.40 113.42,406.01 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_10" ><title>CSH(Ae) for bargaining</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(452.34,24.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">H</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for bargaining</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 50, 166, 140)' stroke-dasharray='2.5,4.0' d='M462.13,19.50 L510.29,19.50 M113.42,406.57 L171.10,392.01 L228.77,377.23 L286.45,363.37 L344.12,347.61 L401.80,333.39 + L459.47,319.84 L517.15,301.78 '/></g> + </g> + <g id="gnuplot_plot_11" fill="none"><title>gnuplot_plot_11</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 45, 5, 5)' fill-opacity = '0.300000' points = '113.42,408.93 171.10,395.76 228.77,384.42 286.45,371.16 344.12,360.61 401.80,347.86 459.47,339.05 517.15,323.02 517.15,319.10 459.47,335.74 401.80,344.31 344.12,356.34 286.45,368.30 228.77,381.62 171.10,393.43 113.42,407.26 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_12" ><title>CSH(Ae) for SSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(452.34,45.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">H</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for SSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 0, 0, 0)' stroke-dasharray='2.5,4.0' d='M462.13,40.50 L510.29,40.50 M113.42,408.24 L171.10,394.64 L228.77,382.57 L286.45,371.05 L344.12,357.79 L401.80,346.69 + L459.47,338.27 L517.15,321.74 '/></g> + </g> + <g id="gnuplot_plot_13" fill="none"><title>gnuplot_plot_13</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g stroke='none' shape-rendering='crispEdges'> + <polygon fill = 'rgb( 88, 98, 237)' fill-opacity = '0.300000' points = '113.42,404.38 171.10,387.98 228.77,371.24 286.45,356.47 344.12,340.04 401.80,325.55 459.47,307.97 517.15,295.73 517.15,287.90 459.47,304.84 401.80,318.25 344.12,331.73 286.45,350.81 228.77,368.26 171.10,384.79 113.42,402.17 +'/> + </g> +</g> + </g> + <g id="gnuplot_plot_14" ><title>CSH(Ae) for PSI</title> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <g transform="translate(452.34,66.05)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="end"> + <text><tspan font-family="Arial" >C</tspan><tspan font-family="Arial" font-size="11.2" dy="-7.00px">S</tspan><tspan font-family="Arial" dy="11.20px">H</tspan><tspan font-family="Arial" font-size="14.0" dy="-4.20px">(Ae) for PSI</tspan></text> + </g> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='rgb( 88, 98, 237)' stroke-dasharray='2.5,4.0' d='M462.13,61.50 L510.29,61.50 M113.42,402.73 L171.10,386.58 L228.77,369.57 L286.45,352.61 L344.12,337.39 L401.80,321.84 + L459.47,306.48 L517.15,289.58 '/></g> + </g> +<g fill="none" color="white" stroke="rgb( 88, 98, 237)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> + <path stroke='black' d='M55.75,102.01 L55.75,422.40 L574.82,422.40 L574.82,102.01 L55.75,102.01 Z '/></g> +<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter"> +</g> +</g> +</svg> + diff --git a/src/main/scala/org/smastaplus/core/SimulatedCost.scala b/src/main/scala/org/smastaplus/core/SimulatedCost.scala index eb9a4628461cfcce1349345bb19ba1e537daa8ee..5e7a0a94335a35ef5c2bea999e4450c00853fa99 100644 --- a/src/main/scala/org/smastaplus/core/SimulatedCost.scala +++ b/src/main/scala/org/smastaplus/core/SimulatedCost.scala @@ -21,6 +21,8 @@ class SimulatedCostE extends SimulatedCost { * Returns the simulated cost for the node */ override def simulatedCost(cost: Double, node: ComputingNode): Double = cost + override def toString: String = "costE" + } /** @@ -36,6 +38,8 @@ class SimulatedCostH extends SimulatedCost { return 2 * cost cost } + + override def toString: String = "costH" } /** @@ -51,4 +55,7 @@ class SimulatedCostA(slowerNode: ComputingNode) extends SimulatedCost { return 2 * cost cost } + + override def toString: String = "costA" + } diff --git a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala index 147fba9fc8a6ff0eb2832e8a84898be338567cf1..d2360df81b86bea9a39c9495c69143a9866b4610 100644 --- a/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala +++ b/src/main/scala/org/smastaplus/experiment/consumer/ConsumptionExperiment.scala @@ -64,6 +64,7 @@ class ConsumptionExperiment(setting: ConsumptionSetting) extends Experiment[Cons val startingTime = System.nanoTime() result = setting.consumer.consume(setting.allocation) val solvingTime = System.nanoTime() - startingTime + if (debug) println(result.simulatedCost) outcome = new DealConsumptionOutcome( Map( "00MeanRealFlowtime" -> result.realGlobalMeanFlowtime, diff --git a/src/main/scala/org/smastaplus/utils/MergeRuns.scala b/src/main/scala/org/smastaplus/utils/MergeRuns.scala index 964d2e1832928a036d21e92c70b00f6bc9ad0c96..1a9d909208825b5791bde8ac56a6676c0eccb0d3 100644 --- a/src/main/scala/org/smastaplus/utils/MergeRuns.scala +++ b/src/main/scala/org/smastaplus/utils/MergeRuns.scala @@ -132,9 +132,9 @@ private object MergeRuns extends App{ "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-120.csv", "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-160.csv", "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-200.csv", - "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-240.csv"//, - //"consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-280.csv", - //"consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-320.csv", + "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-240.csv", + "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-280.csv", + "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasksDetailed8-320.csv", ) .map(f => directoryName + f) outputFilename = "consumption4jobs8nodes5staps5allocationsSlowDownHalfNode040-320tasks.csv"