From: | "Luke Lonergan" <llonergan(at)greenplum(dot)com> |
---|---|
To: | "Steve Atkins" <steve(at)blighty(dot)com>, "Pgsql-Performance ((E-mail))" <pgsql-performance(at)postgresql(dot)org> |
Subject: | Re: 64-bit vs 32-bit performance ... backwards? |
Date: | 2006-06-13 01:50:27 |
Message-ID: | C0B367F3.26F29%llonergan@greenplum.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
Opteron is ~20% faster at executing code in 64-bit mode than 32-bit because
of the extra registers made available with their 64-bit mode:
http://www.tomshardware.com/2003/04/22/duel_of_the_titans/page7.html
Doubling the GPRs from 8 to 16 has generally made a 20%-30% difference in
CPU-bound work:
http://www.tomshardware.com/2003/04/22/duel_of_the_titans/page18.html
If the task is memory bandwidth bound, there should be an advantage to using
less memory for the same task, but if the database is using types that are
the same width for either execution mode, you wouldn't expect a significant
difference just from wider pointer arithmetic.
- Luke
From | Date | Subject | |
---|---|---|---|
Next Message | mark | 2006-06-13 02:16:27 | Re: 64-bit vs 32-bit performance ... backwards? |
Previous Message | Steve Atkins | 2006-06-13 01:29:05 | Re: 64-bit vs 32-bit performance ... backwards? |