- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- performance measurement with dd
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-14-2011 11:23 PM
тАО02-14-2011 11:23 PM
performance measurement with dd
i run the below command in some servers.
timex dd if=/dev/zero bs=64k count=50000 | gzip -9 | dd of=/dev/null
Itanium 2 9340s
real 46.17
user 0.04
sys 1.45
POWER5
real 61.49
user 0.16
sys 1.18
Intel Xeon 5600
real 0m26.669s
user 0m23.720s
sys 0m0.860s
2530 Mhz SPARC64-VII
real 47.82
user 0.05
sys 4.18
I know this doesn't indicate a performance metric exactly. But between linux and unix servers there is a difference(linux on laptop run the command faster than aix,hpux). Also power seems to be run slower than others as unexpectedly. How can you explain this ? is this dd's behaviour ?
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-14-2011 11:42 PM
тАО02-14-2011 11:42 PM
Re: performance measurement with dd
One reason may well be down to how gzip is compiled - I would expect gzip is probably aimed more at x86 platforms these days, and I wouldn't be surprised if optimizations in teh compiler on x86 work much more effectively than those on Power/IA64/SPARC
What exactly are you trying to prove with this test? If you want straight-out memory/CPU tests, then SPECint and SPECfp probably give you a fairer reflection than any quick test like this (I can't believe I said that given my opinion of benchmarks in general!)
HTH
Dncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-14-2011 11:52 PM
тАО02-14-2011 11:52 PM
Re: performance measurement with dd
I just re-read that, and I don't think I was clear... I don't mean the compilers on x86 are _better_ at optimization, just that the gzip code has probably been written so that higher optimization levels on x86 don't cause issues (not necessarily the case on other platforms)
Another thought... what gzip release do you have on all these platforms - the same one? I think "gzip -h" should tell you.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2011 12:02 AM
тАО02-15-2011 12:02 AM
Re: performance measurement with dd
intel: 0.11,
itanium 2:0.33
power5: 1.09.
this is my poor man's test :) just for cpu speed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2011 12:17 AM
тАО02-15-2011 12:17 AM
Re: performance measurement with dd
in this test, is memory speed a factor ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2011 01:08 AM
тАО02-15-2011 01:08 AM
Re: performance measurement with dd
Hmmm now I think about it, possibly not with dd reading and writing only 64K at a time - more a test of CPU cache, and the inter-CPU links that are used.
On your laptop no doubt you have 1 CPU die, and possibly more than one CPU core. When the task runs, they are almost definately sharing the same CPU cache.
On the IBM and HP system, it kind of depends where the scheduler ends up putting the 2 dd processes - if they end up on the same socket you would expect good performance - on different sockets less so.
Have a read of this blog from Kevin Closson that might throw some more light on your test:
http://kevinclosson.wordpress.com/2010/01/05/an-intel-xeon-5400-system-that-outperforms-an-intel-5500-nehalem-ep-system-believe-it-or-know-it/
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2011 01:43 AM
тАО02-15-2011 01:43 AM
Re: performance measurement with dd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2011 02:13 AM
тАО02-15-2011 02:13 AM
Re: performance measurement with dd
timex dd if=/dev/zero bs=64k count=50000 of=/dev/null
If I run that on a system with 9340 processors I get:
# timex dd if=/dev/zero bs=64k count=50000 of=/dev/null
50000+0 records in
50000+0 records out
real 0.31
user 0.03
sys 0.27
Seems a little different from your values...
HTH
Duncan
I am an HPE Employee
