From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_NEOMUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 414EFC43441 for ; Wed, 10 Oct 2018 10:36:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E5DD4214DA for ; Wed, 10 Oct 2018 10:36:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E5DD4214DA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726712AbeJJR6F (ORCPT ); Wed, 10 Oct 2018 13:58:05 -0400 Received: from foss.arm.com ([217.140.101.70]:50228 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726206AbeJJR6F (ORCPT ); Wed, 10 Oct 2018 13:58:05 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id D36C47A9; Wed, 10 Oct 2018 03:36:32 -0700 (PDT) Received: from queper01-lin (queper01-lin.cambridge.arm.com [10.1.195.48]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 2A4253F5BC; Wed, 10 Oct 2018 03:36:30 -0700 (PDT) Date: Wed, 10 Oct 2018 11:36:25 +0100 From: Quentin Perret To: Vincent Guittot Cc: Ingo Molnar , Thara Gopinath , linux-kernel , Ingo Molnar , Peter Zijlstra , Zhang Rui , "gregkh@linuxfoundation.org" , "Rafael J. Wysocki" , Amit Kachhap , viresh kumar , Javi Merino , Eduardo Valentin , Daniel Lezcano , "open list:THERMAL" , Ionela Voinescu Subject: Re: [RFC PATCH 0/7] Introduce thermal pressure Message-ID: <20181010103623.ttjexasymdpi66lu@queper01-lin> References: <1539102302-9057-1-git-send-email-thara.gopinath@linaro.org> <20181010061751.GA37224@gmail.com> <20181010082933.4ful4dzk7rkijcwu@queper01-lin> <20181010095459.orw2gse75klpwosx@queper01-lin> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20171215 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday 10 Oct 2018 at 12:14:32 (+0200), Vincent Guittot wrote: > On Wed, 10 Oct 2018 at 11:55, Quentin Perret wrote: > > > > Hi Vincent, > > > > On Wednesday 10 Oct 2018 at 10:50:05 (+0200), Vincent Guittot wrote: > > > The problem with reflecting directly the capping is that it happens > > > far more often than the pace at which cpu_capacity_orig is updated in > > > the scheduler. > > > > Hmm, how can you be so sure ? That most likely depends on the workload, > > the platform and the thermal governor. Some platforms heat up slowly, > > some quickly. The pace at which the thermal governor will change things > > should depend on that I assume. > > > > > This means that at the moment when scheduler uses the > > > value, it might not be correct anymore. > > > > And OTOH, when you remove a cap for example, it will take time before > > the scheduler can see the newly available capacity if you need to wait > > for the signal to decay. So you are using a wrong information too in > > that scenario. > > But we stay consistant with all other metrics. The same happen when a > task decide to stay idle for a long time after some activity... You > will have to wait for the signal to decay Because you see that as a task going idle. You could also say that removing the cap from a CPU is equivalent to migrating a task off that CPU. In this case you should see the newly available cap pretty much immediately. Also, I feel like the whole thermal capping story could interest the Intel folks who, IIRC, were discussing how to represent their 'boosted' OPPs in the scheduler some time ago. You can see the Intel boost thing as a cap I think -- some OPPs can be inaccessible in some case. I'd be interested to see what's their take on this. > > > Then, this value are also used > > > when building the sched_domain and setting max_cpu_capacity which > > > would also implies the rebuilt the sched_domain topology ... > > > > Wait what ? I thought the thermal cap was reflected in capacity_of, not > > capacity_orig_of ... You need to rebuild the sched_domain in case of > > thermal pressure ? I can't locate where you need to do this in the series. Do you actually need to rebuild the sd hierarchy ? > > Hmm, let me have a closer look at the patches, I must have missed > > something ... > > > > > The pace of changing the capping is to fast to reflect that in the > > > whole scheduler topology > > > > That's probably true in some cases, but it'd be cool to have numbers to > > back up that statement, I think. > > > > Now, if you do need to rebuild the sched domain topology every time you > > update the thermal pressure, I think the PELT HL is _way_ too short for > > that ... You can't rebuild the whole thing every 32ms or so. Or am I > > misunderstanding something ? > > > > > > Thara, have you tried to experiment with a simpler implementation as > > > > suggested by Ingo ? > > > > > > > > Also, assuming that we do want to average things, do we actually want to > > > > tie the thermal ramp-up time to the PELT half life ? That provides > > > > nice maths properties wrt the other signals, but it's not obvious to me > > > > that this thermal 'constant' should be the same on all platforms. Or > > > > maybe it should ? > > > > > > The main interest of using PELT signal is that thermal pressure will > > > evolve at the same pace as other signals used in the scheduler. > > > > Right, I think this is a nice property too (assuming that we actually > > want to average things out). > > > > > With > > > thermal pressure, we have the exact same problem as with RT tasks. The > > > thermal will cap the max frequency which will cap the utilization of > > > the tasks running on the CPU > > > > Well, the nature of the signal is slightly different IMO. Yes it's > > capacity, but you're no actually measuring time spent on the CPU. All > > other PELT signals are based on time, this thermal thing isn't, so it is > > kinda different in a way. And I'm still wondering if it could be helpful > > hmmm ... it is based on time too. You're not actually measuring the time spent on the CPU by the 'thermal task'. There is no such thing as a 'thermal task'. You're just trying to model things like that, but the thermal stuff isn't actually interrupting running tasks to eat CPU cycles. It just makes thing run slower, which isn't exactly the same thing IMO. But maybe that's a detail. > Both signals (current ones and thermal one) are really close. The main > difference with other utilization signal is that instead of providing > a running/not running boolean that is then weighted by the current > capacity, the signal uses direclty the capped max capacity to reflect > the amount of cycle that is stolen by thermal mitigation. > > > to be able to have a different HL for that thermal signal. That would > > 'break' the nice maths properties we have, yes, but is it a problem or is > > it actually helpful to cope with the thermal characteristics of > > different platforms ? > > If you don't use the sign kind of signal with the same responsiveness, > you will start to see some OPP toggles as an example when the thermal > state change because one metrics will change faster than the other one > and you can't have a correct view of the system. Same problem was > happening with rt task. Well, that wasn't the problem with rt tasks. The problem with RT tasks was that the time they spend on the CPU wasn't accounted _at all_ when selecting frequency for CFS, not that the accounting was at a different pace ... Thanks, Quentin