From 9605046971a2c8e2559533218ec4dfde7654c465 Mon Sep 17 00:00:00 2001 From: afanfakh Date: Tue, 2 Dec 2014 11:25:54 +0100 Subject: [PATCH] some corrections --- Heter_paper.tex | 31 +++++++++++++++---------------- fig/commtasks.pdf | Bin 12818 -> 12821 bytes 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Heter_paper.tex b/Heter_paper.tex index d2180d9..f34524c 100644 --- a/Heter_paper.tex +++ b/Heter_paper.tex @@ -53,7 +53,7 @@ \newcommand{\Told}{\Xsub{T}{Old}} \begin{document} -\title{Energy Consumption Reduction in a Heterogeneous Architecture Using DVFS} +\title{Energy Consumption Reduction for Message Passing Iterative Applications in Heterogeneous Architecture Using DVFS} \author{% \IEEEauthorblockN{% @@ -84,10 +84,10 @@ Therefore, the frequency that gives the best tradeoff between the energy consum application must be selected. In this paper, a new online frequencies selecting algorithm for heterogeneous platforms is presented. -It selects the frequency that give the best tradeoff between energy saving and performance degradation, +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 evaluated on the Simgrid simulator while +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. \end{abstract} @@ -107,7 +107,7 @@ 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 consuming 57.15 kilowatts. +This heterogeneous platform executes more than 5 GFLOPS per watt while consumed 57.15 kilowatts. Besides hardware improvements, there are many software 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 @@ -403,7 +403,7 @@ factors is nonlinear, for more details refer to~\cite{Freeh_Exploring.the.Energy 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: +frequency for all nodes) as follows: \begin{multline} \label{eq:pnorm} P_\textit{Norm} = \frac{T_\textit{New}}{T_\textit{Old}}\\ @@ -427,7 +427,7 @@ Where $E_\textit{Reduced}$ and $E_\textit{Original}$ are computed using (\ref{eq While the main goal is to optimize the energy and execution time at the same time, the normalized energy and execution time curves are not in the same direction. According -to the equations~(\ref{eq:enorm}) and~(\ref{eq:pnorm}), the vector of frequency +to the equations~(\ref{eq:pnorm}) and (\ref{eq:enorm}), the vector of frequency scaling factors $S_1,S_2,\dots,S_N$ reduce both the energy and the execution time simultaneously. But the main objective is to produce maximum energy reduction with minimum execution time reduction. @@ -456,8 +456,8 @@ normalized execution time is inverted which gives the normalized performance equ \end{figure} Then, the objective function can be modeled as finding the maximum distance -between the energy curve EQ~(\ref{eq:enorm}) and the performance -curve EQ~(\ref{eq:pnor@+eYd162m_inv}) over all available sets of scaling factors. This +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 performance) at the same time, see figure~(\ref{fig:r1}) or figure~(\ref{fig:r2}). Then the objective function has the following form: @@ -468,8 +468,8 @@ function has the following form: (\overbrace{P_\textit{Norm}(S_{ij})}^{\text{Maximize}} - \overbrace{E_\textit{Norm}(S_{ij})}^{\text{Minimize}} ) \end{equation} -where $N$ is the number of nodes and $F$ is the number of available frequencies for each nodes. -Then, the optimal set of scaling factors that satisfies EQ~(\ref{eq:max}) can be selected. +where $N$ is the number of nodes and $F$ is the number of available frequencies for each node. +Then, the optimal set of scaling factors that satisfies (\ref{eq:max}) can be selected. The objective function can work with any energy model or any power values for each node (static and dynamic powers). However, the most energy reduction gain can be achieved when the energy curve has a convex form as shown in~\cite{Zhuo_Energy.efficient.Dynamic.Task.Scheduling,Rauber_Analytical.Modeling.for.Energy,Hao_Learning.based.DVFS}. @@ -478,7 +478,7 @@ the energy curve has a convex form as shown in~\cite{Zhuo_Energy.efficient.Dynam \label{sec.optim} \subsection{The algorithm details} -In this section algorithm~(\ref{HSA}) is presented. It selects the frequency scaling factors +In this section algorithm \ref{HSA} is presented. It selects the frequency scaling factors vector that gives the best trade-off between minimizing the energy consumption and maximizing the performance of a message passing synchronous iterative application executed on a heterogeneous platform. It works online during the execution time of the iterative message passing program. @@ -569,12 +569,11 @@ which results in bigger energy savings. \State Round the computed initial frequencies $F_i$ to the closest one available in each node. \If{(not the first frequency)} \State $F_i \gets F_i+Fdiff_i,~i=1,\dots,N.$ - \State where $i=1,\dots,N$ means for loop. \EndIf \State $T_\textit{Old} \gets max_{~i=1,\dots,N } (Tcp_i+Tcm_i)$ \State $E_\textit{Original} \gets \sum_{i=1}^{N}{( Pd_i \cdot Tcp_i)} +\sum_{i=1}^{N} {(Ps_i \cdot T_{Old})}$ - \State $Sopt_{i} \gets \frac{Fmax_i}{F_i},~i=1,\dots,N. $ - \State Computing the initial distance $Dist \gets\Pnorm(Sopt_i) - \Enorm(Sopt_i) $ + \State $Sopt_{i} \gets 1,~i=1,\dots,N. $ + \State $Dist \gets 0 $ \While {(all nodes not reach their minimum frequency)} \If{(not the last freq. \textbf{and} not the slowest node)} \State $F_i \gets F_i - Fdiff_i,~i=1,\dots,N.$ @@ -616,7 +615,7 @@ which results in bigger energy savings. \label{dvfs} \end{algorithm} -\subsection{The verifications of the proposed algorithm} +\subsection{The evaluation of the proposed algorithm} \label{sec.verif.algo} The precision of the proposed algorithm mainly depends on the execution time prediction model defined in (\ref{eq:perf}) and the energy model computed by (\ref{eq:energy}). @@ -635,7 +634,7 @@ that tests all the possible solutions. The brute force algorithm was applied to different number of nodes. The solutions returned by the brute force algorithm and the proposed algorithm were identical and the proposed algorithm was on average 10 times faster than the brute force algorithm. It has a small execution time: for a heterogeneous cluster composed of four different types of nodes having the characteristics presented in -table~(\ref{table:platform}), it takes on average \np[ms]{0.04} for 4 nodes and \np[ms]{0.15} on average for 144 nodes +table~\ref{table:platform}, it takes on average \np[ms]{0.04} for 4 nodes and \np[ms]{0.15} on average for 144 nodes to compute the best scaling factors vector. The algorithm complexity is $O(F\cdot (N \cdot4) )$, where $F$ is the number of iterations and $N$ is the number of computing nodes. The algorithm needs from 12 to 20 iterations to select the best vector of frequency scaling factors that gives the results of the next sections. diff --git a/fig/commtasks.pdf b/fig/commtasks.pdf index 5c891e9f1ae6abaf3152d4bc1086576fe4a413cd..0e39a6d6e966be2bb2ae57da77b4096c95b5a4c9 100644 GIT binary patch delta 2257 zcmah}c|4SB8xA4ESSm$1kv;4C&TeTm7^GE946=?Q8QVw+uWTht$G+hT)*G*+@R!8GMyks97*=WPWjCP z0j@<&P7(}VMquAPI;=KN7&}D_yP#;cwN#DH&bE^68V#8|9(KtEKet96o*$tr>wW4Q z>$^4wK_7ky+4D=BImZa^Q^U>Haq*B<<)HEUTDA0}PqU&Ti=if8EYpT!$qm1C$NqW# za?IepcduP84E|_b{mzCshJr68s_h;$+)Ub!A~)RhVUam`$EDaYy(hFIhdKjP4f7Dx zikcw5XA^WeH>2_f{Ap>^vG|46R|a9S@0jP-$1t6Zg-hy9mxCE`I?cmESHa9p0=;J#` z9JA~zfH}gLmu;)mGq0>jyo{3_2}3E}@%s6)alF^~3u|A%3Ry{wTZH z07a3p({PWIUo#ASq9u2adLnLqq83X66M zPr_b3ZD|wO_w4bMLZUdK5|W)t;m4_fiV1SuUnrbG$G>#sqoZ!*n@^J%%VQ1nTMO*e z1hURD+KAiY|H{{)GF6T;%lvjg%KlCFJzbGW8|#3+pAlB5{n6d_V~U~omY|um{h%S6 z7youYB&to1Zv7A<&k9vBAG+Vly#31P#Itj=ViUvRVx^?czSsZ@CUoLV;bH6$HmBD4 z#mAICI8yM401#@InP)cvp-YiQX5Xsu_>b3H`q|PbSF}8 znclnRH*is*U!veV@8bNm$MFVkaBR9*Xp&-r==ko7Tm<%6ht(lPd76l|Xhd0@hr^B}Pq&O33qJ>{y(KXt`iQOa6T7BCetlUgw8~)* zY9?wi9(+`nGNO)hT_+v|A*!rg-!()ntOshl25P0>?LyU++vNq{3V-{87KK@uG&}LShe+EV94k9T z>YF?m3GZK3mfk5|aIV1s&1|Paqs7RI6X|*nbxB9@p}(W|aw%tgXI(-)Z}lN$(UEOj z@=nw@57mLlNa_59C6CHOE$}F-L|!RG?BR6=iX| zL>;Fjhu}6=h%zQiys(GU>KXIv)TmhG#84paU~(y%nIzHT^7H2~fJmm?#MH+*o(AcP zl!2j~#6-%IPxd13$b{sIQ%4otNCHYs7r%x`CMMSnw{Los%#lKTIx8&pr{i~7?E4!& ztidwJ{ma-Xw3K*qyTJ>=97bc>gsj~AX(2JW9uUMc_T@V6T@dnTBm(xrOryF>H^ig#9LhGI0Z?S`{M1GC$>&Y`bqw)>RpFHaE_ zzL3*4fuJ~ zsA{mk0SKCam|r*mG(nmC!hrx5x8d@?y#NkC{mOv=@asGfM1k1<=K^-8Y0^U#6u_q0gFHqKqP=Bm=JN67!<||hbG!!P)Ljw7KMkIga1#Wb_!-} z9qeo6@8=sB9ucHwY=gA~(F98j8V#TjmS_Tk2oMPX*4hNX5NuEgYZx963#WO9(Jq9^ T`JIMsM2y73w6uuFY+(NeD8UQ~ delta 2211 zcmai!X*kpi8^)8h!PtiES;AD7`J2tyYAh2WDcg_?V~l02Gvo+=4c0a3>}j`?(!S*X-BH$fY-6dfW@Ig#Ovq6>hxx(0XD9XI*|z1V3#n(PDc4G>vM& zL05gwOemk7Z?AtB4tjTkT}MM7nRo3p)~NXjr9;b4pt_WBZl@wO|GcO~`b(O1Lrece z7LaqaHCfeGHPa04*YT|O4QidtvqT@u+EWd9_xP~+MJRM(-e1VI=|!+W zFw9A&by5y0z1>;yA;cRO))ScTVPRa4Bg%Z7lnV#Xnf}4ri)da9K7D}kjGraPYr*Je z0P%~ohOV?GonG0YOHaHHF!+V3jwiuIAJUkiAN$(91Z~W3uitIkQ#$b7+XiCLo7HWs z>wHIXPoU>Ratod|mfvgoB}>}KhFOvjF95HbZprz*!I6tB{NVFVrxmQ+H7VXqi_+U$ zo;zBgS8X$EK71slgx)n-$MTXL*Y=EuZ5pai-{4ib_OdCk>S8mP=`~U%w z_^aU-3aH{vHK58znmZHnv=Zg|iJA?`s%0P%R(VhD*));W-P9P5a#d1hNTqu&!pPK9 zVc~I+mn4c0XSAZ($)kEw0#xt6(Kf znT)%b4xz24WSJWA%ggtd;G(Q|^VYV>lAN2aL2g;)2}-Qgio1imRRZIO3;j_1*O`Ww zuIZ@^!@6-hb@3xrcGH++q`IV2Qd`QBYrsynLcX4V zLRk}*#OT+5=!|(at4KV9ReUM}hRi1I>-_QfhdBy^ttD_(@-@z?O8U+UuYwDnjr~Nd zztnj4#D#vV$D^a4%FcdKShgLyK6L1CWl7~(DGbkmZS+BH)=T)hw4(xXgJ?E?ukqLv zY2?<8k_eiFA^g&0B8SNy_)w;sxefSV&yauzuYrd8U4&7a)cHE~Km#mD5qVcms$vSl z8!C83e9}uFS#}6j5|=i{!Aa`}6U;mlHnoN*igib>q?v|=Z>zR_I&!3UvSISk8{F!_ zP_CV=M}i(Mg#{zp?V@+pkld4X|9O2utHw#%E7G&WVR&!UUcAhz*1^2zH#{|L?9(|x zDz8GoFTH33miHnYsRiDQPLvcoFAvrX_@8WjKJ+}hbE#EVl`@k(#uG?R&WVbOCe6Rm zihvH|I<>bk1H$W(VJF@s@Yf3JN$`BPRAjMzcDkq44X8ZZ zvPqE7nJjaz6?GU-6HCunULlOYJb2GJ(z(fYYN(WS&(kX!_w2Qq)JqmqZH~H_YS@BqYy%_^D@9$aLDzV1#pP(LzD&K)$Ac(?~i* zTV$nQI=|m1+d#rV@thKhuZcWYU-6iqJabqL92D_hI(`wZ*3-ALStzF1Ix*>6+l5R3i=z6iXOa)?k=KFgcTyL-8@6tm*%wFO2g|I zg^0C+gINtB**3M(Z0Fj)W?COsM0cdQC_#(DH~F;T&WAC~%&Fm59PaJIn2)|YFRdi| zwD(!KQ)XO`^UFrty8ISuin`uD+Mhg|`))(fy)=0~6P4ut+gGli-2Zh2LJ9PuGeRjI z0pBRd(+>hcDj}4<0icIOH)Zn2!i5nyBm%&o^>i^85V{%42rL&OgNV@JLTB7XNEjXG zzl~C$667C105}xpI}bo$^$`E%=^=oOSO22{08jwx`!s;j`+gGuU;%W7G9V$T`+Zs$ zK;SYg0b|hA3@}GvOwCPA2!IIzfyL?JF}laX3{4;qPNiZVUEEeka}h~BmrxVMBz}nIEb+^gwF5?WkiIEP`n|4E)t1? LsHvIT5+HvA&ye4^ -- 2.39.5