Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941999AbcJ1Hz4 (ORCPT ); Fri, 28 Oct 2016 03:55:56 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:42402 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933416AbcJ1Hzy (ORCPT ); Fri, 28 Oct 2016 03:55:54 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 28 Oct 2016 00:55:52 -0700 From: Vikram Mulukutla To: Peter Zijlstra Cc: linux-kernel@vger.kernel.org, Ingo Molnar , Srivatsa Vaddagiri , Steve Muckle , Olav Haugan , Syed Rameez Mustafa , Joonwoo Park , Pavankumar Kondeti , Saravana Kannan , Bryan Huntsman , Juri Lelli , Morten Rasmussen , Dietmar Eggemann , Chris Redpath , Robin Randhawa , Patrick Bellasi , Todd Kjos , Srinath Sridharan , Andres Oportus , Leo Yan , Vincent Guittot , Vikram Mulukutla Subject: Re: [RFC PATCH 0/3] sched: Introduce Window Assisted Load Tracking In-Reply-To: <20161028072949.GQ3102@twins.programming.kicks-ass.net> References: <1477638642-17428-1-git-send-email-markivx@codeaurora.org> <20161028072949.GQ3102@twins.programming.kicks-ass.net> Message-ID: <107c17a07b42bb5aa9039600db4a47a5@codeaurora.org> User-Agent: Roundcube Webmail/1.2.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1329 Lines: 34 On 2016-10-28 00:29, Peter Zijlstra wrote: > On Fri, Oct 28, 2016 at 12:10:39AM -0700, Vikram Mulukutla wrote: >> >> We propose Window-Assisted Load Tracking (WALT) as an alternative or >> additional >> load tracking scheme in lieu of or along with PELT, one that in our >> estimation >> better tracks task demand and CPU utilization especially for use cases >> on >> mobile devices. WALT was conceived by Srivatsa Vaddagiri to provide >> better >> perf-per-watt numbers on asymmetric CPU (frequency and/or IPC) >> implementations, >> (specifically on Qualcomm Snapgdragon chipsets running Android) and >> its metrics >> have been used to guide task placement and p-state selection (load >> balancing >> in CFS still uses PELT statistics). WALT is now present in the >> android-common >> kernel as well. > > And how come we only learn of it after its already shipping? Isn't that > arse backwards? Yes, but also we were not confident that it would be close to being acceptable upstream since it was intricately tied to our HMP scheduler. However now that more parties including the folks at ARM are interested, and given that EAS exists and schedutil was merged into mainline, we felt it the right time to try and introduce the concept. In general we are seriously trying to get more things upstream and converge.