- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX Itanium 9320 vs RHEL performance
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
Forums
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
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
тАО06-07-2012 08:05 AM
тАО06-07-2012 08:05 AM
HP-UX Itanium 9320 vs RHEL performance
Hi,
We bought a new HP-UX RX2800 server with Itanium 9320 with hope to increase our application performance and move from RHEL.
But simple OpenMP test shows downgrade of performance. Even with bigger number of threads. Simple parallel loop is very slow on HP-UX. Time = 6 secs. On RHEL this test takes about 1 sec.
As I understand the HP-UX should be faster using more cores.....but no :(
All optimization for HP-UX aCC compiler is on.
Code:
for(size_t j = 0; j < N; ++j)
{
#pragma omp parallel for default(shared) private(i) schedule(static,chunk) reduction(+:result)
for (ssize_t i = 0; i < N; ++i)
{
result = result + (a[i] * b[i]);
}
}
Compiller string: aCC -AA -mt +Ofaster -ipo +Ofltacc=relaxed +Onosize +Oinline +DO11.31 +DSnative +DD64 +Oopenmp
Is anyone know the problems with this? Any suggestions?
Thanks for help.
Alex.
- Tags:
- optimizer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2012 08:39 AM
тАО06-07-2012 08:39 AM
Re: HP-UX Integrity 9320 vs RHEL performance
What hardware is RHEL running?
How big is N? What are the types of a and b?
What version of aCC6 are you using?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2012 08:58 AM
тАО06-07-2012 08:58 AM
Re: HP-UX Integrity 9320 vs RHEL performance
RHEL has 4 cores 2.2 Hz
No matter how big is N. In my example N=5000.
a and b are 2 arrays with integers.
aCC: HP C/aC++ B3910B A.06.26 [Apr 12 2011]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2012 09:01 AM
тАО06-07-2012 09:01 AM
Re: HP-UX Integrity 9320 vs RHEL performance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-09-2012 07:38 AM
тАО06-09-2012 07:38 AM
Re: HP-UX Integrity 9320 vs RHEL performance
Perhaps using +Oinfo may tell us something?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-11-2012 12:28 PM
тАО06-11-2012 12:28 PM
Re: HP-UX Integrity 9320 vs RHEL performance
Ye, the compiler said how I can improve the aCC STD library :))
Strange. Pay like for Ferrary and ride using horse :((