mapleFU commented on code in PR #40335:
URL: https://github.com/apache/arrow/pull/40335#discussion_r1519503323


##########
cpp/src/arrow/util/byte_stream_split_test.cc:
##########
@@ -73,10 +73,8 @@ class TestByteStreamSplitSpecialized : public 
::testing::Test {
 #if defined(ARROW_HAVE_SIMD_SPLIT)
     encode_funcs_.push_back({"simd", &ByteStreamSplitEncodeSimd<kWidth>});
     decode_funcs_.push_back({"simd", &ByteStreamSplitDecodeSimd<kWidth>});
-#endif
-#if defined(ARROW_HAVE_SSE4_2)
-    encode_funcs_.push_back({"sse2", &ByteStreamSplitEncodeSse2<kWidth>});
-    decode_funcs_.push_back({"sse2", &ByteStreamSplitDecodeSse2<kWidth>});
+    encode_funcs_.push_back({"simd128", 
&ByteStreamSplitEncodeSimd128<kWidth>});
+    decode_funcs_.push_back({"simd128", 
&ByteStreamSplitDecodeSimd128<kWidth>});
 #endif
 #if defined(ARROW_HAVE_AVX2)

Review Comment:
   Maybe we can, I didn't change the syntax here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to