Optimization of damping part of RL-Sharpening, Issue 1759

This commit is contained in:
Ingo
2013-03-14 12:56:59 +01:00
parent 2054e54f96
commit 5afb5bc182
2 changed files with 64 additions and 11 deletions

View File

@@ -9,7 +9,12 @@
#define INLINE inline
#endif
#include <intrin.h>
#if defined( WIN32 ) && defined(__x86_64__)
#include <intrin.h>
#else
#include <emmintrin.h>
#endif
#include <stdint.h>
typedef __m128d vdouble;