Skip to content

Commit

Permalink
Fix: sz_u512_vec_t members visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Dec 10, 2024
1 parent 749b0d8 commit 2007d49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/stringzilla/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -545,10 +545,10 @@ typedef union sz_u256_vec_t {
* as well as 4x XMM registers or 2x YMM registers or 1x ZMM register.
*/
typedef union sz_u512_vec_t {
#if SZ_USE_ICE
#if SZ_USE_SKYLAKE || SZ_USE_ICE
__m512i zmm;
#endif
#if SZ_USE_HASWELL
#if SZ_USE_HASWELL || SZ_USE_SKYLAKE || SZ_USE_ICE
__m256i ymms[2];
__m128i xmms[4];
#endif
Expand Down

0 comments on commit 2007d49

Please sign in to comment.