- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Performance Of 64-bit Application Compare To 32-bi...
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
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
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
07-30-2001 12:47 AM
07-30-2001 12:47 AM
Performance Of 64-bit Application Compare To 32-bit Application.
What i really means is.. is that realistic that performance of 64-bit application is not much different compare to 32-bit application? I means speed of application (involve arithmetic computing). Cause from what i read from 64-bit article is 64-bit application have much performance compare to 32-bit application.
For your information, application that i try is involve with many number crunching, or arithmetic computing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:54 AM
07-30-2001 12:54 AM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
http://www.specbench.org/
http://www.tpc.org/
Regards
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:57 AM
07-30-2001 12:57 AM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
I belive that 64-bit apps are much faster than 32-bit. I would say you have to tune your kernel params in order to have the max power of 64-bit apps.
Check following kernel parameters :
streampipes must be 0.
maxssiz
maxtsiz
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 01:21 AM
07-30-2001 01:21 AM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
Remember that with a 64 bit app you will need more resource. as a basic example the rough relative throughput speeds are
CPU - 1
Memory - 100
Disk - 1,000,000
If you look at this pyramid moving to 64-bit will (in general) push stuff to the lower level as it will require twice as much space. So by moving to 64-bit Apps if you do not have sufficient CPU cache, or memory you performance could be hit enourmously.
That said the previous reply suggested looking at your kernel settings (shmmax, maxtsiz, maxdsiz, maxssiz, I would also add semaphores to this just in case sem???)
Godd luck
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:26 PM
07-30-2001 12:26 PM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
many if not most "32-bit" apps are also PA 1.1. for PA, a 64-bit app must be PA 2.0. so, many 32 to 64-bit comparisons are actually changing (at least) two variables at once - the "bitness" of pointers and such, and the instruction set used.
at one point, when i compared a 32 bit 1.1 compile of an 8.mumble named from BIND with a 64 bit 2.0 compilation, the 64 bit compilation was about 10% faster.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 12:39 PM
07-30-2001 12:39 PM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
Many apps that claim to be 64-bit are legacy apps that have been ported. Generally the first releases of these more modern versions are not compiled at a very high optimization level. I would expect that as time goes by, and testing continues, the code optimizations will improve (or the older versions will be phased out, whichever can be done faster/cheaper/smarter).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 10:14 PM
07-30-2001 10:14 PM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
maxdsiz 3221225472
maxdsiz_64bit 1073741824
maxssiz 83570688
maxssiz_64bit 8388608
maxtsiz 67108864
maxtsiz_64bit 1073741824
shmem 1
shmmax 1073741824
sema 1
semaem 16384
semmap 66
semmni 64
semmns 128
semmnu 30
semume 30
semvmx 32767
How can i determine which setting should be suitable for 64-bit application? Like where can i refer to?
And lastly, is that 64-bit application didn't have much performance compare to 32-bit application if main function of application is to make arithmetic computing?
Thanks all again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 08:55 AM
07-31-2001 08:55 AM
Re: Performance Of 64-bit Application Compare To 32-bit Application.
Some of your max?siz parameters are larger than your max?siz_64bit!!!
I would suggest (well I usually use) the following
maxdsiz ==> 0.5 to 1x your memory
maxdsiz_64bit ==> 0.5 to 1x your memory
maxssiz ==> 0.5 to 1x your memory
maxssiz_64bit ==> 0.5 to 1x your memory
maxtsiz ==> 0.5 to 1x your memory
maxtsiz_64bit ==> 0.5 to 1x your memory
semmap (SEMMNI+2)
semmni 4096
semmns 4096
shmmax ==> 0.5 to 1x your memory
The above is from experience, so may not be 100% applicable to you situation. We arrived at it by requirements from various apps or has needed to be increased due to some system shortage. (e.g. we did a massive memory data load & found that maxdsiz was not big enough)
Tim