Re: [ovs-dev] [PATCHv6 09/14] hash: Add 128-bit murmurhash.

2014-09-29 Thread Ben Pfaff
On Tue, Sep 30, 2014 at 11:30:38AM +1300, Joe Stringer wrote: > On 30 September 2014 09:30, Ben Pfaff wrote: > > > On Fri, Sep 26, 2014 at 09:28:13PM +1200, Joe Stringer wrote: > > > Add the 128-bit murmurhash by Austin Appleby, r150 from: > > > http://code.google.com/p/smhasher/source/browse/tru

Re: [ovs-dev] [PATCHv6 09/14] hash: Add 128-bit murmurhash.

2014-09-29 Thread Joe Stringer
On 30 September 2014 09:30, Ben Pfaff wrote: > On Fri, Sep 26, 2014 at 09:28:13PM +1200, Joe Stringer wrote: > > Add the 128-bit murmurhash by Austin Appleby, r150 from: > > http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp > > > > Signed-off-by: Joe Stringer > > --- > > The

Re: [ovs-dev] [PATCHv6 09/14] hash: Add 128-bit murmurhash.

2014-09-29 Thread Ben Pfaff
On Fri, Sep 26, 2014 at 09:28:13PM +1200, Joe Stringer wrote: > Add the 128-bit murmurhash by Austin Appleby, r150 from: > http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp > > Signed-off-by: Joe Stringer > --- > The x64 version is approximately 2x faster than x86 in the tests

[ovs-dev] [PATCHv6 09/14] hash: Add 128-bit murmurhash.

2014-09-26 Thread Joe Stringer
Add the 128-bit murmurhash by Austin Appleby, r150 from: http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp Signed-off-by: Joe Stringer --- The x64 version is approximately 2x faster than x86 in the tests I ran. v6: Add version that uses 64-bit operations. Add tests for x8