Fedora Linux Support Community & Resources Center
  #121  
Old 18th December 2011, 10:52 PM
Evil_Bert's Avatar
Evil_Bert Offline
Retired Again - Administrator
 
Join Date: Nov 2007
Location: Reality
Posts: 3,034
linuxfedorafirefox
Re: How fast does this run on your PC?

Code:
real	0m5.676s
user	0m5.591s
sys	0m0.057s
AMD Phenom II X4 945 at stock speed (3.0 GHz), running F14 x64, with bogomips 6027.24 (apparently).

Version of gmp-devel is gmp-devel-4.3.1-7.fc14.x86_64.
__________________
.
Marching to the beat of his own conundrum.
Reply With Quote
  #122  
Old 19th December 2011, 12:33 PM
pinkfloyd Offline
Registered User
 
Join Date: Oct 2011
Posts: 30
linuxchrome
Re: How fast does this run on your PC?

grep -e model -e cache -e MHz -e bogo /proc/cpuinfo | head -5

model : 2
model name : AMD Athlon(tm) 7750 Dual-Core Processor
cpu MHz : 2700.247
cache size : 512 KB
bogomips : 5400.49

Code:
real	0m6.659s
user	0m6.516s
sys	0m0.098s
Reply With Quote
  #123  
Old 19th December 2011, 01:25 PM
flyingfsck Offline
Registered User
 
Join Date: Aug 2010
Location: Al Ain, UAE
Posts: 1,057
linuxfirefox
Re: How fast does this run on your PC?

On my Lenovo S10 netbook:

time ./mersenne 43112609 > M46

real 1m54.901s
user 1m53.934s
sys 0m0.664s

The poor little thing almost had a heart attack and is still wheezing...

Bigger numbers are better right?

Last edited by flyingfsck; 19th December 2011 at 01:28 PM.
Reply With Quote
  #124  
Old 19th December 2011, 02:59 PM
rclark Offline
Registered User
 
Join Date: Nov 2004
Location: here
Posts: 596
linuxfirefox
Re: How fast does this run on your PC?

My Fedora 16 box :

real 0m24.025s
user 0m23.715s
sys 0m0.182s
Reply With Quote
  #125  
Old 19th December 2011, 09:16 PM
Gödel's Avatar
Gödel Offline
Registered User
 
Join Date: Jul 2009
Location: London,England
Posts: 1,095
linuxfirefox
Re: How fast does this run on your PC?

Quote:
Originally Posted by RupertPupkin View Post
I finally figured out the source of my problem: cpu frequency scaling is horribly broken for my processor in F16. For some infuriating reason the Fedora developers decided to eliminate cpu frequency scaling as an optional service as it had been in earlier versions of Fedora; it is now compiled directly into the kernels that ship with F16. So I had to build a custom kernel(!) with cpu frequency scaling disabled. My cli apps now run fast again, including the mersenne program:
Code:
$ time ./mersenne 43112609 > M46

real    0m9.076s
user    0m8.481s
sys     0m0.073s
Yay! (But boo on the Fedora devs for their lame-brained decision. )
That's a pretty terrible bug. If it's still there in f17 development you should let them know.

In most bioses you can usually disable frequency scaling, but this basic stuff should work. I couldn't manage with the cpu on my laptop at constant maxspeed, but luckily ondemand frequency scaling works on intel core2 duos.
Reply With Quote
  #126  
Old 31st December 2011, 10:19 AM
ah7013's Avatar
ah7013 Offline
Registered "Cashew" User
 
Join Date: May 2010
Location: Adelaide, Australia
Age: 18
Posts: 614
linuxfirefox
Re: How fast does this run on your PC?

Thought I would try it on my new laptop
Code:
[andrew@localhost ~]$ time ./mersenne 43112609 > M46

real    0m3.045s
user    0m2.996s
sys     0m0.043s

[andrew@localhost ~]$ grep -e model -e cache -e MHz -e bogo /proc/cpuinfo | head -5
model           : 42
model name      : Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz
cpu MHz         : 800.000
cache size      : 4096 KB
bogomips        : 5586.71

[andrew@localhost ~]$ rpm -q lib64gmp-devel
lib64gmp-devel-5.0.1-3.mga1
__________________
Running Mageia 3 (KDE 4.10) on an ASUS K55V (Core i5, 16GB RAM, 750GB HDD, Nvidia 610M)
Reply With Quote
  #127  
Old 31st December 2011, 10:56 AM
markus39 Online
Registered User
 
Join Date: Jul 2008
Location: Maastricht, the Netherlands
Age: 46
Posts: 65
linuxfirefox
Re: How fast does this run on your PC?

Code:
$ time ./mersenne 43112609 > M46

real	0m12.859s
user	0m12.769s
sys	0m0.054s
4 year old Lenovo T61p, 4GB ram with Fedora 16 64bit

EDIT 04/02/2012
My T61p died two weaks ago...

On my new Lenovo W520, 16GB with Fedora 16 64bit
model : 42
model name : Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz
cpu MHz : 800.000
cache size : 8192 KB
bogomips : 4983.46

real 0m5.579s
user 0m5.531s
sys 0m0.024s

Last edited by markus39; 4th February 2012 at 08:10 AM.
Reply With Quote
  #128  
Old 6th January 2012, 10:45 PM
JamesNZ's Avatar
JamesNZ Offline
Registered User
 
Join Date: Aug 2010
Location: Wellington, New Zealand
Age: 16
Posts: 889
linuxchrome
Re: How fast does this run on your PC?

Turion X2 dual-core 2.1GHz, running F16:

Code:
$ time ./mersenne 43112609 > M46

real	0m10.222s
user	0m10.057s
sys	0m0.109s
__________________
"For what is a man profited if he gains the whole world, but loses his own soul?"

- Jesus
Reply With Quote
  #129  
Old 12th January 2012, 05:45 PM
RupertPupkin's Avatar
RupertPupkin Offline
Registered User
 
Join Date: Nov 2006
Location: Detroit
Posts: 4,619
linuxfedorafirefox
Re: How fast does this run on your PC?

Using the koji gmp-devel-5.0.2-3.fc17 package in F16 makes it much faster than before (it took over 9 seconds using gmp-devel-4.3.2-4.fc16):
Code:
$ time ./mersenne 43112609 > M46

real    0m5.697s
user    0m5.219s
sys     0m0.103s
__________________
OS: Fedora 18 x86_64 | CPU: AMD64 3700+ 2.2GHz | RAM: 2GB PC3200 DDR | Disk: 160GB PATA | Video: ATI Radeon 7500 AGP 64MB | Sound: Turtle Beach Santa Cruz CS4630 | Ethernet: Realtek 8110SC
Reply With Quote
  #130  
Old 13th January 2012, 10:06 AM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,608
linuxfirefox
Re: How fast does this run on your PC?

On the Notebook: (gmp-devel-4.3.2.-4)
Code:
real	0m56.735s
user	0m56.389s
sys	0m0.199s
On the Laptop: (gmp as above)
Code:
real	0m16.949s
user	0m16.515s
sys	0m0.046s
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb

Last edited by sea; 13th January 2012 at 10:09 AM.
Reply With Quote
  #131  
Old 13th January 2012, 09:39 PM
VernDog Offline
Registered User
 
Join Date: Aug 2009
Posts: 226
linuxchrome
Re: How fast does this run on your PC?

HP Pavilion Slimline s5310y:

Installed: gmp-devel.x86_64 1:4.3.2-4.fc16

Quote:
real 0m5.820s
user 0m5.699s
sys 0m0.061s
Quote:
model : 6
model name : AMD Athlon(tm) II X2 250 Processor
cpu MHz : 800.000
cache size : 1024 KB
bogomips : 6027.24

Last edited by VernDog; 13th January 2012 at 09:50 PM.
Reply With Quote
  #132  
Old 15th January 2012, 03:49 AM
smr54 Online
Registered User
 
Join Date: Jan 2010
Posts: 4,979
linuxchrome
Re: How fast does this run on your PC?

ArchLinux on a UX31e Zenbook (SSD drive) i5 @1.70 (According to cpuinfo) 4GB RAM
Code:
real 0m3.935s
user 0m3.893s
sys 0m0.033s
F16 on same machine (no adjustments made for CPU scaling mentioned earlier)
Code:
real 0m7.315s
user 0m7.247s
sys 0m0.038s
Reply With Quote
  #133  
Old 11th May 2012, 01:19 PM
smr54 Online
Registered User
 
Join Date: Jan 2010
Posts: 4,979
linuxchrome
Re: How fast does this run on your PC?

And, on a brand new toy--Clevo laptop with i7 processor and 16GB of RAM

real 0m0.113.s
user 0m0.107s
sys 0m0.005s


EDIT--that might be wrong, can't reproduce it, or possibly my aging eyes misread.

real 0m3.080s
user 0m3.024s
sys 0m0.030s

I'm getting that or similar after running a few times.

Last edited by smr54; 11th May 2012 at 03:36 PM.
Reply With Quote
  #134  
Old 29th December 2012, 06:46 AM
sphinxx Offline
Registered User
 
Join Date: Aug 2008
Posts: 2
linuxfirefox
Re: How fast does this run on your PC?

Intel(R) Core(TM) i5-2430M CPU @ 2.40GHz


[root@aman aman]# time ./mesc 43112609 > M46

real 0m3.695s
user 0m3.615s
sys 0m0.049s
Reply With Quote
  #135  
Old 29th December 2012, 07:17 PM
Fenrin Offline
Registered User
 
Join Date: Apr 2010
Location: Earth
Posts: 858
linuxepiphany
Re: How fast does this run on your PC?

AMD Phenom II X2 @ 3.00 GHz (2 Core), Fedora 18 beta x86_64

$ time ./mersenne 43112609 > M46

real 0m3.396s
user 0m3.323s
sys 0m0.060s
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help Fast!!!! invisible-MK Using Fedora 5 14th November 2006 12:15 AM
too fast sjoerd222 Using Fedora 19 25th October 2006 11:35 AM
Need help fast fedorafan2 Using Fedora 3 13th August 2006 06:16 PM
This ****'s getting old fast Nickmorgan19457 Using Fedora 3 21st April 2006 06:55 PM
Sagem Fast 800 on FC4 gsouf Hardware & Laptops 2 28th February 2006 08:27 PM


Current GMT-time: 03:42 (Friday, 24-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat