From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753255Ab1DWMNS (ORCPT ); Sat, 23 Apr 2011 08:13:18 -0400 Received: from smtp-out.google.com ([74.125.121.67]:60542 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752133Ab1DWMNR convert rfc822-to-8bit (ORCPT ); Sat, 23 Apr 2011 08:13:17 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=uy4vbVMD1mdGjXCnzwFAfx+WC5e+obu1cZAfTdmzfXqMpWjluKtAg1W2GVWIBIr/MB s28XLvM3ZtB3e4DRgqxA== MIME-Version: 1.0 In-Reply-To: <20110422204740.GA21364@elte.hu> References: <20110422092322.GA1948@elte.hu> <20110422105211.GB1948@elte.hu> <20110422131846.GA20760@elte.hu> <20110422204740.GA21364@elte.hu> Date: Sat, 23 Apr 2011 14:13:13 +0200 Message-ID: Subject: Re: [generalized cache events] Re: [PATCH 1/1] perf tools: Add missing user space support for config1/config2 From: Stephane Eranian To: Ingo Molnar Cc: Arnaldo Carvalho de Melo , linux-kernel@vger.kernel.org, Andi Kleen , Peter Zijlstra , Lin Ming , Arnaldo Carvalho de Melo , Thomas Gleixner , Peter Zijlstra , eranian@gmail.com, Arun Sharma , Linus Torvalds , Andrew Morton Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT X-System-Of-Record: true Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Apr 22, 2011 at 10:47 PM, Ingo Molnar wrote: > > * Stephane Eranian wrote: > >> On Fri, Apr 22, 2011 at 3:18 PM, Ingo Molnar wrote: >> > >> > * Stephane Eranian wrote: >> > >> > > > Say i'm a developer and i have an app with such code: >> > > > >> > > > #define THOUSAND 1000 >> > > > >> > > > static char array[THOUSAND][THOUSAND]; >> > > > >> > > > int init_array(void) >> > > > { >> > > >        int i, j; >> > > > >> > > >        for (i = 0; i < THOUSAND; i++) { >> > > >                for (j = 0; j < THOUSAND; j++) { >> > > >                        array[j][i]++; >> > > >                } >> > > >        } >> > > > >> > > >        return 0; >> > > > } >> > > > >> > > > Pretty common stuff, right? >> > > > >> > > > Using the generalized cache events i can run: >> > > > >> > > >  $ perf stat --repeat 10 -e cycles:u -e instructions:u -e l1-dcache-loads:u -e l1-dcache-load-misses:u ./array >> > > > >> > > >  Performance counter stats for './array' (10 runs): >> > > > >> > > >         6,719,130 cycles:u                   ( +-   0.662% ) >> > > >         5,084,792 instructions:u           #      0.757 IPC     ( +-   0.000% ) >> > > >         1,037,032 l1-dcache-loads:u          ( +-   0.009% ) >> > > >         1,003,604 l1-dcache-load-misses:u    ( +-   0.003% ) >> > > > >> > > >        0.003802098  seconds time elapsed   ( +-  13.395% ) >> > > > >> > > > I consider that this is 'bad', because for almost every dcache-load there's a >> > > > dcache-miss - a 99% L1 cache miss rate! >> > > > >> > > > Then i think a bit, notice something, apply this performance optimization: >> > > >> > > I don't think this example is really representative of the kind of problems >> > > people face, it is just too small and obvious. [...] >> > >> > Well, the overwhelming majority of performance problems are 'small and obvious' >> >> Problems are not simple. Most serious applications these days are huge, >> hundreds of MB of text, if not GB. >> >> In your artificial example, you knew the answer before you started the >> measurement. >> >> Most of the time, applications are assembled out of hundreds of libraries, so >> no single developers knows all the code. Thus, the performance analyst is >> faced with a black box most of the time. > > I isolated out an example and assumed that you'd agree that identifying hot > spots is trivial with generic cache events. > > My assumption was wrong so let me show you how trivial it really is. > > Here's an example with *two* problematic functions (but it could have hundreds, > it does not matter): > > --------------------------------> > #define THOUSAND 1000 > > static char array1[THOUSAND][THOUSAND]; > > static char array2[THOUSAND][THOUSAND]; > > void func1(void) > { >        int i, j; > >        for (i = 0; i < THOUSAND; i++) >                for (j = 0; j < THOUSAND; j++) >                        array1[i][j]++; > } > > void func2(void) > { >        int i, j; > >        for (i = 0; i < THOUSAND; i++) >                for (j = 0; j < THOUSAND; j++) >                        array2[j][i]++; > } > > int main(void) > { >        for (;;) { >                func1(); >                func2(); >        } > >        return 0; > } > <-------------------------------- > > We do not know which one has the cache-misses problem, func1() or func2(), it's > all a black box, right? > > Using generic cache events you simply type this: > >  $ perf top -e l1-dcache-load-misses -e l1-dcache-loads > > And you get such output: > >   PerfTop:    1923 irqs/sec  kernel: 0.0%  exact:  0.0% [l1-dcache-load-misses:u/l1-dcache-loads:u],  (all, 16 CPUs) > ------------------------------------------------------------------------------------------------------- > >   weight    samples  pcnt funct DSO >   ______    _______ _____ _____ ______________________ > >      1.9       6184 98.8% func2 /home/mingo/opt/array2 >      0.0         69  1.1% func1 /home/mingo/opt/array2 > > It has pinpointed the problem in func2 *very* precisely. > > Obviously this can be used to analyze larger apps as well, with thousands of > functions, to pinpoint cachemiss problems in specific functions. > No, it does not. As I said before, your example is just to trivial to be representative. You keep thinking that what you see in the profile pinpoints exactly the instruction or even the function where the problem always occurs. This is not always the case. There is skid, and it can be very big, the IP you get may not even be in the same function where the load was issued. You cannot generalized based on this example.