From 591a01d15c8068749f366b12c9fd7194a8da8b8c Mon Sep 17 00:00:00 2001 From: Minchul Lee Date: Fri, 26 Mar 2021 14:17:39 +0900 Subject: [PATCH] fixed --- EigenRand/MorePacketMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EigenRand/MorePacketMath.h b/EigenRand/MorePacketMath.h index 60102b7..49403fc 100644 --- a/EigenRand/MorePacketMath.h +++ b/EigenRand/MorePacketMath.h @@ -533,7 +533,7 @@ namespace Eigen Packet4i a1, a2, b1, b2; split_two(a, a1, a2); split_two(b, b1, b2); - return combine_two((Packet4i)_mm256_cmpgt_epi32(b1, a1), (Packet4i)_mm256_cmpgt_epi32(b2, a2)); + return combine_two((Packet4i)_mm_cmpgt_epi32(b1, a1), (Packet4i)_mm_cmpgt_epi32(b2, a2)); #endif }