summaryrefslogtreecommitdiffstats
path: root/third_party/intgemm/compile_test/avx2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/intgemm/compile_test/avx2.cc')
-rw-r--r--third_party/intgemm/compile_test/avx2.cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/intgemm/compile_test/avx2.cc b/third_party/intgemm/compile_test/avx2.cc
new file mode 100644
index 0000000000..9ed534e929
--- /dev/null
+++ b/third_party/intgemm/compile_test/avx2.cc
@@ -0,0 +1,25 @@
+// Some compilers don't have AVX2 support. Test for them.
+#include <immintrin.h>
+
+// clang-cl bug doesn't include these headers when pretending to be MSVC
+// https://github.com/llvm/llvm-project/blob/e9a294449575a1e1a0daca470f64914695dc9adc/clang/lib/Headers/immintrin.h#L69-L72
+#if defined(_MSC_VER) && defined(__clang__)
+#include <avxintrin.h>
+#include <avx2intrin.h>
+#include <smmintrin.h>
+#endif
+
+#if defined(_MSC_VER) && !defined(__clang__)
+#define INTGEMM_AVX2
+#else
+#define INTGEMM_AVX2 __attribute__ ((target ("avx2")))
+#endif
+
+INTGEMM_AVX2 int Test() {
+ __m256i value = _mm256_set1_epi32(1);
+ value = _mm256_abs_epi8(value);
+ return *(int*)&value;
+}
+
+int main() {
+}