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 ebfe
Recipients asvetlov, christian.heimes, ebfe, gregory.p.smith, isoschiz, jcea, mark.dickinson, neologix, pitrou, python-dev, rhettinger, serhiy.storchaka, skrah, tim.peters, vstinner
Date 2013-06-02.14:21:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370182868.14.0.102535831856.issue16427@psf.upfronthosting.co.za>
In-reply-to
Content
Here are some benchmarks for a arm7l on a rk30-board. CityHash was compiled with -mcpu=native -O3.

CityHash is around half as fast as the native algorithm for small strings and way, way slower on larger ones. My guess would be that the complex arithmetic in cityhash outweights the gains of better scheduling.

The results are somewhat inconclusive, as the performance increases again for very long strings.
History
Date User Action Args
2013-06-02 14:21:08ebfesetrecipients: + ebfe, tim.peters, rhettinger, gregory.p.smith, jcea, mark.dickinson, pitrou, vstinner, christian.heimes, asvetlov, skrah, neologix, python-dev, serhiy.storchaka, isoschiz
2013-06-02 14:21:08ebfesetmessageid: <1370182868.14.0.102535831856.issue16427@psf.upfronthosting.co.za>
2013-06-02 14:21:08ebfelinkissue16427 messages
2013-06-02 14:21:07ebfecreate