You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
205B

  1. #pragma once
  2. #if defined ARCH_X64
  3. // Intel intrinsics header
  4. #include <x86intrin.h>
  5. #elif defined ARCH_ARM64
  6. // Translation header for using SSE3 intrinsics on ARM64 NEON
  7. #include <sse2neon.h>
  8. #endif