Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756121AbbBHPja (ORCPT ); Sun, 8 Feb 2015 10:39:30 -0500 Received: from mail-ig0-f173.google.com ([209.85.213.173]:62464 "EHLO mail-ig0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751693AbbBHPj2 (ORCPT ); Sun, 8 Feb 2015 10:39:28 -0500 MIME-Version: 1.0 In-Reply-To: References: <1422897162-111998-1-git-send-email-aksgarg1989@gmail.com> <1422938843.2293.4.camel@stgolabs.net> Date: Sun, 8 Feb 2015 21:09:27 +0530 Message-ID: Subject: Re: [PATCH] lib/int_sqrt.c: Optimize square root function From: Anshul Garg To: Linus Torvalds Cc: Davidlohr Bueso , Linux Kernel Mailing List , "anshul.g@samsung.com" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1560 Lines: 43 Dear Mr. linus, Thanks for quick replies. Yes performance numbers are not conclusive enough. So its better to discard this patch as of now. I will try to explore more in this area. Thanks & regards Anshul Garg On Fri, Feb 6, 2015 at 1:07 AM, Linus Torvalds wrote: > On Thu, Feb 5, 2015 at 10:43 AM, Anshul Garg wrote: >> >> NOTE :: >> I have not used gcc optimizations while compilation. >> With O2 level optimization proposed solution is taking more time. > > The thing is, the kernel is compiled with -O2, so that's what matters. > > Also, for very tight loops like this, the major costs tend to be very > subtle microarchitectural details, particularly branch prediction. > Which in turn end up sometimes depending on just exactly where the > branches were placed, and even whether two conditional branches were > in the same 8-byte aligned region etc things (because the branch > prediction might be done ignoring the low bits of the EIP etc). So not > only does the exact microarchitecture matter, things that don't *seem* > like they should matter can change behavior a lot. > > My point is really that the performance numbers are very ambiguous. > The patch may well help in some situations, but hurt in others. > > Linus -- 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/