[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1208573728.11990.14.camel@localhost>
Date: Fri, 18 Apr 2008 19:55:28 -0700
From: Joe Perches <joe@...ches.com>
To: dean gaudet <dean@...tic.org>
Cc: Harvey Harrison <harvey.harrison@...il.com>,
Alexander van Heukelum <heukelum@...lshack.com>,
Alexander van Heukelum <heukelum@...tmail.fm>,
Ingo Molnar <mingo@...e.hu>, Andi Kleen <andi@...stfloor.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: Alternative implementation of the generic __ffs
On Fri, 2008-04-18 at 18:11 -0700, dean gaudet wrote:
> have you benchmarked it?
I modified Alexander's benchmark:
http://lkml.org/lkml/2008/4/18/267
to include 32 and 64 bit variants called smallest.
On an old ARM:
$ gcc --version
gcc (GCC) 3.4.6
$ cat /proc/cpuinfo
Processor : Intel StrongARM-110 rev 4 (v4l)
BogoMIPS : 262.14
Hardware : Rebel-NetWinder
Revision : 57ff
Serial : 000000000000185c
$ gcc -Os -fomit-frame-pointer ffs.c
$ ./a.out
Original: 3180 tics, 8379 tics
New: 4280 tics, 8890 tics
Smallest: 4027 tics, 7835 tics
Empty loop: 1543 tics, 2260 tics
$ gcc -O2 -fomit-frame-pointer ffs.c
$ ./a.out
Original: 3161 tics, 7843 tics
New: 4778 tics, 8783 tics
Smallest: 4408 tics, 7149 tics
Empty loop: 1515 tics, 2140 tics
$ gcc -O3 -fomit-frame-pointer ffs.c
$ ./a.out
Original: 3078 tics, 7692 tics
New: 4714 tics, 8671 tics
Smallest: 4344 tics, 7117 tics
Empty loop: 1444 tics, 2024 tics
On my old laptop:
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 15
model : 2
model name : Intel(R) Pentium(R) 4 Mobile CPU 1.60GHz
stepping : 4
cpu MHz : 1200.000
cache size : 512 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca
cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm up
bogomips : 2400.03
clflush size : 64
$ gcc --version
gcc (GCC) 4.3.0
$ gcc -Os -fomit-frame-pointer ffs.c
$ ./a.out
Original: 901 tics, 1426 tics
New: 862 tics, 1244 tics
Smallest: 911 tics, 1331 tics
Assembly: 208 tics, 402 tics
Empty loop: 208 tics, 304 tics
$ gcc -O2 -fomit-frame-pointer ffs.c
$ ./a.out
Original: 918 tics, 1386 tics
New: 872 tics, 1193 tics
Smallest: 906 tics, 1309 tics
Assembly: 202 tics, 396 tics
Empty loop: 207 tics, 299 tics
$ gcc -O3 -fomit-frame-pointer ffs.c
$ ./a.out
Original: 865 tics, 1389 tics
New: 852 tics, 1183 tics
Smallest: 907 tics, 1296 tics
Assembly: 200 tics, 390 tics
Empty loop: 211 tics, 296 tics
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists