From: raphael couturier Date: Sat, 13 Dec 2014 17:51:56 +0000 (+0100) Subject: 1st english corrections X-Git-Tag: pdsec15_submission~37 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/mpi-energy2.git/commitdiff_plain/d6ac7695d449ab8f2bdcd375c265cf8484d539b8 1st english corrections --- diff --git a/Heter_paper.tex b/Heter_paper.tex index c29b2a4..50fc783 100644 --- a/Heter_paper.tex +++ b/Heter_paper.tex @@ -76,49 +76,67 @@ \maketitle \begin{abstract} -Computing platforms are consuming more and more energy due to the increase of the number of nodes composing them. -To minimize the operating costs of these platforms many techniques have been used. Dynamic voltage and frequency -scaling (DVFS) is one of them, it reduces the frequency of a CPU to lower its energy consumption. However, -lowering the frequency of a CPU might increase the execution time of an application running on that processor. -Therefore, the frequency that gives the best tradeoff between the energy consumption and the performance of an -application must be selected. - -In this paper, a new online frequencies selecting algorithm for heterogeneous platforms is presented. -It selects the frequency that try to give the best tradeoff between energy saving and performance degradation, -for each node computing the message passing iterative application. The algorithm has a small overhead and -works without training or profiling. It uses a new energy model for message passing iterative applications -running on a heterogeneous platform. The proposed algorithm is evaluated on the Simgrid simulator while -running the NAS parallel benchmarks. The experiments demonstrated that it reduces the energy consumption -up to 35\% while limiting the performance degradation as much as possible. Finally, the algorithm is compared to an existing method and the comparison results show that it outperforms the latter. +Computing platforms are consuming more and more energy due to the increasing +number of nodes composing them. To minimize the operating costs of these +platforms many techniques have been used. Dynamic voltage and frequency scaling +(DVFS) is one of them. It reduces the frequency of a CPU to lower its energy +consumption. However, lowering the frequency of a CPU might increase the +execution time of an application running on that processor. Therefore, the +frequency that gives the best tradeoff between the energy consumption and the +performance of an application must be selected. + +In this paper, a new online frequencies selecting algorithm for heterogeneous +platforms is presented. It selects the frequency which tries to give the best +tradeoff between energy saving and performance degradation, for each node +computing the message passing iterative application. The algorithm has a small +overhead and works without training or profiling. It uses a new energy model for +message passing iterative applications running on a heterogeneous platform. The +proposed algorithm is evaluated on the Simgrid simulator while running the NAS +parallel benchmarks. The experiments show that it reduces the energy +consumption by up to 35\% while limiting the performance degradation as much as +possible. Finally, the algorithm is compared to an existing method, the +comparison results showing that it outperforms the latter. \end{abstract} \section{Introduction} \label{sec.intro} -The need for more computing power is continually increasing. To partially satisfy this need, most supercomputers -constructors just put more computing nodes in their platform. The resulting platform might achieve higher floating -point operations per second (FLOPS), but the energy consumption and the heat dissipation are also increased. -As an example, the Chinese supercomputer Tianhe-2 had the highest FLOPS in November 2014 according to the Top500 -list \cite{TOP500_Supercomputers_Sites}. However, it was also the most power hungry platform with its over 3 millions -cores consuming around 17.8 megawatts. Moreover, according to the U.S. annual energy outlook 2014 -\cite{U.S_Annual.Energy.Outlook.2014}, the price of energy for 1 megawatt-hour -was approximately equal to \$70. -Therefore, the price of the energy consumed by the -Tianhe-2 platform is approximately more than \$10 millions each year. -The computing platforms must be more energy efficient and offer the highest number of FLOPS per watt possible, -such as the L-CSC from the GSI Helmholtz Center which -became the top of the Green500 list in November 2014 \cite{Green500_List}. -This heterogeneous platform executes more than 5 GFLOPS per watt while consumed 57.15 kilowatts. - -Besides platform improvements, there are many software and hardware techniques to lower the energy consumption of these platforms, -such as scheduling, DVFS, ... DVFS is a widely used process to reduce the energy consumption of a processor by lowering -its frequency \cite{Rizvandi_Some.Observations.on.Optimal.Frequency}. However, it also reduces the number of FLOPS -executed by the processor which might increase the execution time of the application running over that processor. -Therefore, researchers used different optimization strategies to select the frequency that gives the best tradeoff -between the energy reduction and -performance degradation ratio. In \cite{Our_first_paper}, a frequency selecting algorithm -was proposed to reduce the energy consumption of message passing iterative applications running over homogeneous platforms. The results of the experiments showed significant energy consumption reductions. In this paper, a new frequency selecting algorithm adapted for heterogeneous platform is presented. It selects the vector of frequencies, for a heterogeneous platform running a message passing iterative application, that simultaneously tries to give the maximum energy reduction and minimum performance degradation ratio. The algorithm has a very small -overhead, works online and does not need any training or profiling. +The need for more computing power is continually increasing. To partially +satisfy this need, most supercomputers constructors just put more computing +nodes in their platform. The resulting platforms might achieve higher floating +point operations per second (FLOPS), but the energy consumption and the heat +dissipation are also increased. As an example, the Chinese supercomputer +Tianhe-2 had the highest FLOPS in November 2014 according to the Top500 list +\cite{TOP500_Supercomputers_Sites}. However, it was also the most power hungry +platform with its over 3 million cores consuming around 17.8 megawatts. +Moreover, according to the U.S. annual energy outlook 2014 +\cite{U.S_Annual.Energy.Outlook.2014}, the price of energy for 1 megawatt-hour +was approximately equal to \$70. Therefore, the price of the energy consumed by +the Tianhe-2 platform is approximately more than \$10 million each year. The +computing platforms must be more energy efficient and offer the highest number +of FLOPS per watt possible, such as the L-CSC from the GSI Helmholtz Center +which became the top of the Green500 list in November 2014 \cite{Green500_List}. +This heterogeneous platform executes more than 5 GFLOPS per watt while consuming +57.15 kilowatts. + +Besides platform improvements, there are many software and hardware techniques +to lower the energy consumption of these platforms, such as scheduling, DVFS, +... DVFS is a widely used process to reduce the energy consumption of a +processor by lowering its frequency +\cite{Rizvandi_Some.Observations.on.Optimal.Frequency}. However, it also reduces +the number of FLOPS executed by the processor which might increase the execution +time of the application running over that processor. Therefore, researchers use +different optimization strategies to select the frequency that gives the best +tradeoff between the energy reduction and performance degradation ratio. In +\cite{Our_first_paper}, a frequency selecting algorithm was proposed to reduce +the energy consumption of message passing iterative applications running over +homogeneous platforms. The results of the experiments show significant energy +consumption reductions. In this paper, a new frequency selecting algorithm +adapted for heterogeneous platform is presented. It selects the vector of +frequencies, for a heterogeneous platform running a message passing iterative +application, that simultaneously tries to offer the maximum energy reduction and +minimum performance degradation ratio. The algorithm has a very small overhead, +works online and does not need any training or profiling. This paper is organized as follows: Section~\ref{sec.relwork} presents some related works from other authors. Section~\ref{sec.exe} describes how the @@ -131,14 +149,29 @@ Section~\ref{sec.expe} presents the results of applying the algorithm on the NA on a heterogeneous platform. It shows the results of running three different power scenarios and comparing them. Moreover, it also shows the comparison results between the proposed method and an existing method. -Finally, in Section~\ref{sec.concl} the paper is ended with a summary and some future works. +Finally, in Section~\ref{sec.concl} the paper ends with a summary and some future works. \section{Related works} \label{sec.relwork} -DVFS is a technique enabled -in modern processors to scale down both the voltage and the frequency of -the CPU while computing, in order to reduce the energy consumption of the processor. DVFS is -also allowed in the GPUs to achieve the same goal. Reducing the frequency of a processor lowers its number of FLOPS and might degrade the performance of the application running on that processor, especially if it is compute bound. Therefore selecting the appropriate frequency for a processor to satisfy some objectives and while taking into account all the constraints, is not a trivial operation. Many researchers used different strategies to tackle this problem. Some of them developed online methods that compute the new frequency while executing the application, such as ~\cite{Hao_Learning.based.DVFS,Spiliopoulos_Green.governors.Adaptive.DVFS}. Others used offline methods that might need to run the application and profile it before selecting the new frequency, such as ~\cite{Rountree_Bounding.energy.consumption.in.MPI,Cochran_Pack_and_Cap_Adaptive_DVFS}. The methods could be heuristics, exact or brute force methods that satisfy varied objectives such as energy reduction or performance. They also could be adapted to the execution's environment and the type of the application such as sequential, parallel or distributed architecture, homogeneous or heterogeneous platform, synchronous or asynchronous application, ... +DVFS is a technique used in modern processors to scale down both the voltage and +the frequency of the CPU while computing, in order to reduce the energy +consumption of the processor. DVFS is also allowed in GPUs to achieve the +same goal. Reducing the frequency of a processor lowers its number of FLOPS and +might degrade the performance of the application running on that processor, +especially if it is compute bound. Therefore selecting the appropriate frequency +for a processor to satisfy some objectives while taking into account all the +constraints, is not a trivial operation. Many researchers used different +strategies to tackle this problem. Some of them developed online methods that +compute the new frequency while executing the application, such as +~\cite{Hao_Learning.based.DVFS,Spiliopoulos_Green.governors.Adaptive.DVFS}. Others +used offline methods that might need to run the application and profile it +before selecting the new frequency, such as +~\cite{Rountree_Bounding.energy.consumption.in.MPI,Cochran_Pack_and_Cap_Adaptive_DVFS}. The +methods could be heuristics, exact or brute force methods that satisfy varied +objectives such as energy reduction or performance. They also could be adapted +to the execution's environment and the type of the application such as +sequential, parallel or distributed architecture, homogeneous or heterogeneous +platform, synchronous or asynchronous application, ... In this paper, we are interested in reducing energy for message passing iterative synchronous applications running over heterogeneous platforms. Some works have already been done for such platforms and they can be classified into two types of heterogeneous platforms: @@ -149,7 +182,7 @@ Some works have already been done for such platforms and they can be classified \end{itemize} -For the first type of platform, the compute intensive parallel tasks are executed on the GPUs and the rest are executed +For the first type of platform, the computing intensive parallel tasks are executed on the GPUs and the rest are executed on the CPUs. Luley et al. ~\cite{Luley_Energy.efficiency.evaluation.and.benchmarking}, proposed a heterogeneous cluster composed of Intel Xeon CPUs and NVIDIA GPUs. Their main goal was to maximize the @@ -170,15 +203,15 @@ of Intel and AMD processors. They use a gradient method to predict the impact of In~\cite{Shelepov_Scheduling.on.Heterogeneous.Multicore} and \cite{Li_Minimizing.Energy.Consumption.for.Frame.Based.Tasks}, the best frequencies for a specified heterogeneous cluster are selected offline using some heuristic. Chen et al.~\cite{Chen_DVFS.under.quality.of.service.requirements} used a greedy dynamic programming approach to -minimize the power consumption of heterogeneous severs while respecting given time constraints. This approach +minimize the power consumption of heterogeneous servers while respecting given time constraints. This approach had considerable overhead. In contrast to the above described papers, this paper presents the following contributions : \begin{enumerate} \item two new energy and performance models for message passing iterative synchronous applications running over - a heterogeneous platform. Both models takes into account the communication and slack times. The models can predict the required energy and the execution time of the application. + a heterogeneous platform. Both models take into account communication and slack times. The models can predict the required energy and the execution time of the application. \item a new online frequency selecting algorithm for heterogeneous platforms. The algorithm has a very small - overhead and does not need for any training or profiling. It uses a new optimization function which simultaneously maximizes the performance and minimizes the energy consumption of a message passing iterative synchronous application. + overhead and does not need any training or profiling. It uses a new optimization function which simultaneously maximizes the performance and minimizes the energy consumption of a message passing iterative synchronous application. \end{enumerate} @@ -205,7 +238,7 @@ heterogeneous computation power of the computing nodes, slack times might occur when fast nodes have to wait, during synchronous communications, for the slower nodes to finish their computations (see Figure~(\ref{fig:heter})). Therefore, the overall execution time of the program is the execution time of the slowest -task which have the highest computation time and no slack time. +task which has the highest computation time and no slack time. \begin{figure}[t] \centering @@ -237,7 +270,7 @@ as in (\ref{eq:s}). time that begin with an MPI call for sending or receiving a message until the message is synchronously sent or received. -Since in a heterogeneous platform, each node has different characteristics, +Since in a heterogeneous platform each node has different characteristics, especially different frequency gears, when applying DVFS operations on these nodes, they may get different scaling factors represented by a scaling vector: $(S_1, S_2,\dots, S_N)$ where $S_i$ is the scaling factor of processor $i$. To @@ -257,20 +290,20 @@ Where:\\ \label{eq:perf2} MinTcm = \min_{i=1,2,\dots,N} (Tcm_i) \end{equation} -where $TcpOld_i$ is the computation time of processor $i$ during the first -iteration and $MinTcm$ is the communication time of the slowest processor from -the first iteration. The model computes the maximum computation time -with scaling factor from each node added to the communication time of the -slowest node, it means only the communication time without any slack time. -Therefore, the execution time of the iterative application is -equal to the execution time of one iteration as in (\ref{eq:perf}) multiplied -by the number of iterations of that application. - -This prediction model is developed from the model for predicting the execution time of -message passing distributed applications for homogeneous architectures~\cite{Our_first_paper}. -The execution time prediction model is used in the method for optimizing both -energy consumption and performance of iterative methods, which is presented in the -following sections. +where $TcpOld_i$ is the computation time of processor $i$ during the first +iteration and $MinTcm$ is the communication time of the slowest processor from +the first iteration. The model computes the maximum computation time with +scaling factor from each node added to the communication time of the slowest +node. It means only the communication time without any slack time is taken into +account. Therefore, the execution time of the iterative application is equal to +the execution time of one iteration as in (\ref{eq:perf}) multiplied by the +number of iterations of that application. + +This prediction model is developed from the model to predict the execution time +of message passing distributed applications for homogeneous +architectures~\cite{Our_first_paper}. The execution time prediction model is +used in the method to optimize both the energy consumption and the performance of +iterative methods, which is presented in the following sections. \subsection{Energy model for heterogeneous platform} @@ -293,7 +326,7 @@ The static power $Ps$ captures the leakage power as follows: \end{equation} where V is the supply voltage, $N_{trans}$ is the number of transistors, $K_{design}$ is a design dependent parameter and $I_{leak}$ is a -technology-dependent parameter. The energy consumed by an individual processor +technology dependent parameter. The energy consumed by an individual processor to execute a given program can be computed as: \begin{equation} \label{eq:eind} @@ -341,7 +374,7 @@ and even when idle. As in~\cite{Rauber_Analytical.Modeling.for.Energy,Zhuo_Energ during idle and computation periods, and for all its available frequencies. The static energy is the static power multiplied by the execution time of the program. According to the execution time model in (\ref{eq:perf}), the execution time of the program -is the summation of the computation and the communication times. The computation time is linearly related +is the sum of the computation and the communication times. The computation time is linearly related to the frequency scaling factor, while this scaling factor does not affect the communication time. The static energy of a processor after scaling its frequency is computed as follows: \begin{equation} @@ -349,19 +382,22 @@ The static energy of a processor after scaling its frequency is computed as foll E_\textit{s} = Ps \cdot (Tcp \cdot S + Tcm) \end{equation} -In the considered heterogeneous platform, each processor $i$ might have different dynamic and -static powers, noted as $Pd_{i}$ and $Ps_{i}$ respectively. Therefore, even if the distributed -message passing iterative application is load balanced, the computation time of each CPU $i$ -noted $Tcp_{i}$ might be different and different frequency scaling factors might be computed -in order to decrease the overall energy consumption of the application and reduce the slack times. -The communication time of a processor $i$ is noted as $Tcm_{i}$ and could contain slack times -if it is communicating with slower nodes, see figure(\ref{fig:heter}). Therefore, all nodes do -not have equal communication times. While the dynamic energy is computed according to the frequency -scaling factor and the dynamic power of each node as in (\ref{eq:Edyn}), the static energy is -computed as the sum of the execution time of one iteration multiplied by static power of each processor. -The overall energy consumption of a message passing distributed application executed over a -heterogeneous platform during one iteration is the summation of all dynamic and static energies -for each processor. It is computed as follows: +In the considered heterogeneous platform, each processor $i$ might have +different dynamic and static powers, noted as $Pd_{i}$ and $Ps_{i}$ +respectively. Therefore, even if the distributed message passing iterative +application is load balanced, the computation time of each CPU $i$ noted +$Tcp_{i}$ might be different and different frequency scaling factors might be +computed in order to decrease the overall energy consumption of the application +and reduce slack times. The communication time of a processor $i$ is noted as +$Tcm_{i}$ and could contain slack times when communicating with slower +nodes, see figure(\ref{fig:heter}). Therefore, all nodes do not have equal +communication times. While the dynamic energy is computed according to the +frequency scaling factor and the dynamic power of each node as in +(\ref{eq:Edyn}), the static energy is computed as the sum of the execution time +of one iteration multiplied by the static power of each processor. The overall +energy consumption of a message passing distributed application executed over a +heterogeneous platform during one iteration is the summation of all dynamic and +static energies for each processor. It is computed as follows: \begin{multline} \label{eq:energy} E = \sum_{i=1}^{N} {(S_i^{-2} \cdot Pd_{i} \cdot Tcp_i)} + {} \\ @@ -380,32 +416,37 @@ multiplied by the number of iterations of that application. \section{Optimization of both energy consumption and performance} \label{sec.compet} -Using the lowest frequency for each processor does not necessarily gives the most energy -efficient execution of an application. Indeed, even though the dynamic power is reduced -while scaling down the frequency of a processor, its computation power is proportionally -decreased and thus the execution time might be drastically increased during which dynamic -and static powers are being consumed. Therefore, it might cancel any gains achieved by -scaling down the frequency of all nodes to the minimum and the overall energy consumption -of the application might not be the optimal one. It is not trivial to select the appropriate -frequency scaling factor for each processor while considering the characteristics of each processor -(computation power, range of frequencies, dynamic and static powers) and the task executed -(computation/communication ratio) in order to reduce the overall energy consumption and not -significantly increase the execution time. In our previous work~\cite{Our_first_paper}, we proposed a method -that selects the optimal frequency scaling factor for a homogeneous cluster executing a message -passing iterative synchronous application while giving the best trade-off between the energy -consumption and the performance for such applications. In this work we are interested in -heterogeneous clusters as described above. Due to the heterogeneity of the processors, not -one but a vector of scaling factors should be selected and it must give the best trade-off -between energy consumption and performance. - -The relation between the energy consumption and the execution time for an application is -complex and nonlinear, Thus, unlike the relation between the execution time -and the scaling factor, the relation of the energy with the frequency scaling -factors is nonlinear, for more details refer to~\cite{Freeh_Exploring.the.Energy.Time.Tradeoff}. -Moreover, they are not measured using the same metric. To solve this problem, the -execution time is normalized by computing the ratio between the new execution time (after -scaling down the frequencies of some processors) and the initial one (with maximum -frequency for all nodes) as follows: +Using the lowest frequency for each processor does not necessarily give the most +energy efficient execution of an application. Indeed, even though the dynamic +power is reduced while scaling down the frequency of a processor, its +computation power is proportionally decreased. Hence, the execution time might +be drastically increased and during that time, dynamic and static powers are +being consumed. Therefore, it might cancel any gains achieved by scaling down +the frequency of all nodes to the minimum and the overall energy consumption of +the application might not be the optimal one. It is not trivial to select the +appropriate frequency scaling factor for each processor while considering the +characteristics of each processor (computation power, range of frequencies, +dynamic and static powers) and the task executed (computation/communication +ratio). The aim being to reduce the overall energy consumption and to avoid +increasing significantly the execution time. In our previous +work~\cite{Our_first_paper}, we proposed a method that selects the optimal +frequency scaling factor for a homogeneous cluster executing a message passing +iterative synchronous application while giving the best trade-off between the +energy consumption and the performance for such applications. In this work we +are interested in heterogeneous clusters as described above. Due to the +heterogeneity of the processors, a vector of scaling factors should +be selected and it must give the best trade-off between energy consumption and +performance. + +The relation between the energy consumption and the execution time for an +application is complex and nonlinear, Thus, unlike the relation between the +execution time and the scaling factor, the relation between the energy and the +frequency scaling factors is nonlinear, for more details refer +to~\cite{Freeh_Exploring.the.Energy.Time.Tradeoff}. Moreover, these relations +are not measured using the same metric. To solve this problem, the execution +time is normalized by computing the ratio between the new execution time (after +scaling down the frequencies of some processors) and the initial one (with +maximum frequency for all nodes) as follows: \begin{multline} \label{eq:pnorm} P_\textit{Norm} = \frac{T_\textit{New}}{T_\textit{Old}}\\ @@ -457,7 +498,7 @@ normalized execution time is inverted which gives the normalized performance equ \caption{The energy and performance relation} \end{figure} -Then, the objective function can be modeled as finding the maximum distance +Then, the objective function can be modeled in order to find the maximum distance between the energy curve (\ref{eq:enorm}) and the performance curve (\ref{eq:pnorm_inv}) over all available sets of scaling factors. This represents the minimum energy consumption with minimum execution time (maximum