DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] member: fix build failure with GCC 5.4.0
@ 2022-10-10  8:22 Leyi Rong
  2022-10-10  8:43 ` Ali Alnubani
  0 siblings, 1 reply; 3+ messages in thread
From: Leyi Rong @ 2022-10-10  8:22 UTC (permalink / raw)
  To: alialnu, thomas; +Cc: dev, Leyi Rong

This patch fixes the build failure by typecasting to match
_mm512_i32gather_epi64() definition.

Bugzilla ID: 1096
Fixes: db354bd2e1f8 ("member: add NitroSketch mode")

Signed-off-by: Leyi Rong <leyi.rong@intel.com>
---
 lib/member/rte_member_sketch_avx512.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/member/rte_member_sketch_avx512.c b/lib/member/rte_member_sketch_avx512.c
index 288e37a446..42c6d6b023 100644
--- a/lib/member/rte_member_sketch_avx512.c
+++ b/lib/member/rte_member_sketch_avx512.c
@@ -28,8 +28,8 @@ sketch_update_avx512(const struct rte_member_setsum *ss,
 	v_row_base = _mm256_mullo_epi32(v_idx, v_col);
 	v_hash_result = _mm256_add_epi32(v_row_base, v_hash_result);
 
-	current_sketch =
-		_mm512_i32gather_epi64(v_hash_result, count_array, 8);
+	current_sketch = _mm512_i32gather_epi64
+				(v_hash_result, (void *)count_array, 8);
 	v_count = _mm512_set1_epi64(count);
 	updated_sketch = _mm512_add_epi64(current_sketch, v_count);
 	_mm512_i32scatter_epi64
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-10 10:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-10  8:22 [PATCH] member: fix build failure with GCC 5.4.0 Leyi Rong
2022-10-10  8:43 ` Ali Alnubani
2022-10-10 10:21   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).