Skip to content

Commit

Permalink
include ssse3 header
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Oct 20, 2022
1 parent a3c6258 commit 65cabac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/layer/x86/convolution_x86.cpp
Expand Up @@ -16,12 +16,15 @@

#if __SSE2__
#include <emmintrin.h>
#if __SSSE3__
#include <tmmintrin.h>
#if __SSE4_1__
#include <smmintrin.h>
#if __AVX__
#include <immintrin.h>
#endif
#endif // __SSE4_1__
#endif // __SSSE3__
#endif // __SSE2__
#include "x86_activation.h"
#include "x86_usability.h"
Expand Down

0 comments on commit 65cabac

Please sign in to comment.