- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Terrible performance on Itanium
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
тАО10-13-2010 04:08 PM
тАО10-13-2010 04:08 PM
Terrible performance on Itanium
The exact same code is run on SPARC and RISC systems and runs fine.
One processing loop that takes less than a second to execute on the other systems takes 46 seconds on Itanium. This is all calculations.
Using grof, prof, and caliper I have not been able to find where the time goes.
The really strange thing is when I run the program under tusc, the loop execution time drops from 46 seconds to 2 seconds.
Top shows the CPU's to be basically idle when this runs.
Any suggestions on how to track this down?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2010 07:28 PM
тАО10-13-2010 07:28 PM
Re: Terrible performance on Itanium
Compiled and linked how?
> [...] that processes data as it comes in
> [...]
I may be dense, but that description tells me
nothing. What sort of data, coming into
where, from where, how, processed how?
I know nothing, but a Forum search for
keywords like, say:
alignment
might find some old threads related to one
possible source of sloth on IA64 systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2010 07:16 AM
тАО10-14-2010 07:16 AM
Re: Terrible performance on Itanium
Does time(1) and caliper show the system (vs user) is taking most of the time? What about gpm?
What caliper reports did you try?
Is your application threaded?
What HP-UX version?
>This is all calculations.
Are you heavily using floating point and getting denorms? Link with +FPD
>The really strange thing is when I run the program under tusc
Hmm, rings a faint bell?
>Steven: Compiled and linked how?
Right, what compiler version and opt level?
>alignment might find some old threads related to one possible source of sloth on IA64 systems.
Except that PA has the same alignment restrictions and the default action on HP-UX is to abort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2010 09:00 AM
тАО10-14-2010 09:00 AM
Re: Terrible performance on Itanium
On both Itanium and RISC:
CXXFLAGS = -AA -O $(INCLUDES)
LDFLAGS = -AA -Wl,-O,+n,+s,-s,-z,+k
This program under normal operation runs forever but for running tests I added some code to limit the run to 15 minutes.
time executable gives:
Itanium
real 15m27.43s
user 0m2.48s
sys 0m0.53s
RISC
real 15m7.36s
user 0m6.58s
sys 0m3.28s
Around one of the main calculation loops I added code that looks like:
start_time = time (0);
for () {
calculations
}
syslog (LOG_DEBUG, "Loop time %d", time (0) - start_time);
For Itanium with 1194 data points, loop time is around 64 seconds.
For RISC with 2337 data points, loop time is
0 or 1 second.
The numbers for a SPARC machine are similar to the numbers for RISC.
The Itanium system does not have gpm.
In a 15 minute period this loop gets called 30 times.
All the operations in the loop are simple arithmetic, some float, some int.
It seems to me that most of the wall clock time is spent waiting or blocked on something, but I have no clue what would block arithmetic.
The system has lots of memory and is not swapping.
One other thing that may make a difference just occurred to me; the machine is virtual and I have no access to the "real" machine but the admin's butt for the real machine is on the line to get this working and will do anything I ask him to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2010 03:57 PM
тАО10-14-2010 03:57 PM
Re: Terrible performance on Itanium
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-15-2010 07:57 PM
тАО10-15-2010 07:57 PM
Re: Terrible performance on Itanium
To make a long story short, the application in question is but one of many interacting applications that are a giant pain to set up on a system, which is why I haven't done it.