Skip to content

Commit

Permalink
fix: format lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama authored and pull[bot] committed Nov 18, 2023
1 parent e84fa4e commit 1396215
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/jxl/enc_fast_lossless.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
// manually add _mm512_cvtsi512_si32 definition on MacOS Mojave
// copied from gcc 11.1.0 include/avx512fintrin.h line 14367-14373
#if __APPLE__ && defined(__clang__) && defined(__MAC_10_0)
inline int __attribute__ ((__gnu_inline__, __always_inline__, __artificial__)) _mm512_cvtsi512_si32 (__m512i __A) { __v16si __B = (__v16si) __A; return __B[0]; }
inline int __attribute__((__gnu_inline__, __always_inline__, __artificial__))
_mm512_cvtsi512_si32(__m512i __A) {
__v16si __B = (__v16si)__A;
return __B[0];
}
#endif

// TODO(veluca): MSVC support for dynamic dispatch.
Expand Down

0 comments on commit 1396215

Please sign in to comment.