Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752509AbaDYIA3 (ORCPT ); Fri, 25 Apr 2014 04:00:29 -0400 Received: from mail-ob0-f169.google.com ([209.85.214.169]:60321 "EHLO mail-ob0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751216AbaDYIAX (ORCPT ); Fri, 25 Apr 2014 04:00:23 -0400 MIME-Version: 1.0 In-Reply-To: <20140424193004.GA2467@intel.com> References: <20140424193004.GA2467@intel.com> From: Vincent Guittot Date: Fri, 25 Apr 2014 10:00:02 +0200 Message-ID: Subject: Re: [RFC] A new CPU load metric for power-efficient scheduler: CPU ConCurrency To: Yuyang Du Cc: "mingo@redhat.com" , Peter Zijlstra , linux-kernel , "linux-pm@vger.kernel.org" , arjan.van.de.ven@intel.com, Len Brown , rafael.j.wysocki@intel.com, alan.cox@intel.com, "Gross, Mark" , Morten Rasmussen Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 24 April 2014 21:30, Yuyang Du wrote: > Hi Ingo, PeterZ, and others, > > The current scheduler's load balancing is completely work-conserving. In some > workload, generally low CPU utilization but immersed with CPU bursts of > transient tasks, migrating task to engage all available CPUs for > work-conserving can lead to significant overhead: cache locality loss, > idle/active HW state transitional latency and power, shallower idle state, > etc, which are both power and performance inefficient especially for today's > low power processors in mobile. > > This RFC introduces a sense of idleness-conserving into work-conserving (by > all means, we really don't want to be overwhelming in only one way). But to > what extent the idleness-conserving should be, bearing in mind that we don't > want to sacrifice performance? We first need a load/idleness indicator to that > end. > > Thanks to CFS's "model an ideal, precise multi-tasking CPU", tasks can be seen > as concurrently running (the tasks in the runqueue). So it is natural to use > task concurrency as load indicator. Having said that, we do two things: > > 1) Divide continuous time into periods of time, and average task concurrency > in period, for tolerating the transient bursts: > a = sum(concurrency * time) / period > 2) Exponentially decay past periods, and synthesize them all, for hysteresis > to load drops or resilience to load rises (let f be decaying factor, and a_x > the xth period average since period 0): > s = a_n + f^1 * a_n-1 + f^2 * a_n-2 +, .....,+ f^(n-1) * a_1 + f^n * a_0 In the original version of entity load tracking patchset, there was a usage_avg_sum field that was counting the time the task was really running on the CPU. By combining this (disappeared ) field with the runnable_avg_sum, you should have similar concurrency value but with the current load tracking mechanism (instead of creating new one). Vincent > > We name this load indicator as CPU ConCurrency (CC): task concurrency > determines how many CPUs are needed to be running concurrently. > > To track CC, we intercept the scheduler in 1) enqueue, 2) dequeue, 3) > scheduler tick, and 4) enter/exit idle. > > By CC, we implemented a Workload Consolidation patch on two Intel mobile > platforms (a quad-core composed of two dual-core modules): contain load and load > balancing in the first dual-core when aggregated CC low, and if not in the > full quad-core. Results show that we got power savings and no substantial > performance regression (even gains for some). > > Thanks, > Yuyang -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/