aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/bihash_16_8.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2018-05-23 20:21:51 +0200
committerDamjan Marion <dmarion.lists@gmail.com>2018-05-25 11:44:43 +0000
commit1cf9a165fc80b2f8109f85d5bd121e0c7c397e58 (patch)
tree207e20914dc9edab3f2f225377e2c1af9d476190 /src/vppinfra/bihash_16_8.h
parentd57f63698f99fad0288ac040d83b3ecd380d4bfd (diff)
Vectorized bihash_{48,40,24,16}_8 key compare
bihash_48_8 case: Scalar code: 6 clocks SSE4.2 code: 3 clocks AVX2 code: 2.27 clocks AVX512 code: 1.5 clocks Change-Id: I40700175835a1e7321276e47eadbf9771d3c5a68 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/bihash_16_8.h')
-rw-r--r--src/vppinfra/bihash_16_8.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vppinfra/bihash_16_8.h b/src/vppinfra/bihash_16_8.h
index 361665bee4b..dc820116cd9 100644
--- a/src/vppinfra/bihash_16_8.h
+++ b/src/vppinfra/bihash_16_8.h
@@ -67,7 +67,13 @@ format_bihash_kvp_16_8 (u8 * s, va_list * args)
static inline int
clib_bihash_key_compare_16_8 (u64 * a, u64 * b)
{
+#if defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE)
+ u64x2 v;
+ v = u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b);
+ return u64x2_is_all_zero (v);
+#else
return ((a[0] ^ b[0]) | (a[1] ^ b[1])) == 0;
+#endif
}
#undef __included_bihash_template_h__