This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients christian.heimes, ncoghlan, pitrou
Date 2013-10-06.19:28:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381087689.25.0.264819051257.issue19183@psf.upfronthosting.co.za>
In-reply-to
Content
Microbenchmarking hash computation (Linux, gcc 4.7.3):

* Short strings:
  python -m timeit -s "b=b'x'*20" "hash(memoryview(b))"

- 64-bit build, before: 0.263 usec per loop
- 64-bit build, after: 0.263 usec per loop

- 32-bit build, before: 0.303 usec per loop
- 32-bit build, after: 0.358 usec per loop

* Long strings:
  python -m timeit -s "b=b'x'*1000" "hash(memoryview(b))"

- 64-bit build, before: 1.56 usec per loop
- 64-bit build, after: 1.03 usec per loop

- 32-bit build, before: 1.61 usec per loop
- 32-bit build, after: 2.46 usec per loop

Overall, performance looks fine to me.
History
Date User Action Args
2013-10-06 19:28:09pitrousetrecipients: + pitrou, ncoghlan, christian.heimes
2013-10-06 19:28:09pitrousetmessageid: <1381087689.25.0.264819051257.issue19183@psf.upfronthosting.co.za>
2013-10-06 19:28:09pitroulinkissue19183 messages
2013-10-06 19:28:09pitroucreate