Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Mar 26, 2021
1 parent 516f883 commit 591a01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EigenRand/MorePacketMath.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 591a01d

Please sign in to comment.