[dpdk-dev] [PATCH v3] Implement memcmp using SIMD intrinsics

2015-06-15 Thread Ravi Kerur
On Fri, Jun 12, 2015 at 1:30 AM, Ond?ej B?lka wrote: > On Mon, May 18, 2015 at 01:01:42PM -0700, Ravi Kerur wrote: > > Background: > > After preliminary discussion with John (Zhihong) and Tim from Intel it > was > > decided that it would be beneficial to use AVX/SSE intrinsics for memcmp > > simi

[dpdk-dev] [PATCH v3] Implement memcmp using SIMD intrinsics

2015-06-12 Thread Ondřej Bílka
On Mon, May 18, 2015 at 01:01:42PM -0700, Ravi Kerur wrote: > Background: > After preliminary discussion with John (Zhihong) and Tim from Intel it was > decided that it would be beneficial to use AVX/SSE intrinsics for memcmp > similar to memcpy that had been implemeneted. In addition, we decided t

[dpdk-dev] [PATCH v3] Implement memcmp using SIMD intrinsics

2015-06-12 Thread Bruce Richardson
On Fri, Jun 12, 2015 at 10:30:56AM +0200, Ond?ej B?lka wrote: > On Mon, May 18, 2015 at 01:01:42PM -0700, Ravi Kerur wrote: > > Background: > > After preliminary discussion with John (Zhihong) and Tim from Intel it was > > decided that it would be beneficial to use AVX/SSE intrinsics for memcmp > >

[dpdk-dev] [PATCH v3] Implement memcmp using SIMD intrinsics

2015-05-18 Thread Ravi Kerur
Background: After preliminary discussion with John (Zhihong) and Tim from Intel it was decided that it would be beneficial to use AVX/SSE intrinsics for memcmp similar to memcpy that had been implemeneted. In addition, we decided to use librte_hash as a test candidate to test both functionality and