Commit 8e833302 authored by Raymond Knopp's avatar Raymond Knopp Committed by laurent

testing on Xeon

parent bd9f998d
...@@ -155,7 +155,7 @@ if(EXISTS "/proc/cpuinfo") ...@@ -155,7 +155,7 @@ if(EXISTS "/proc/cpuinfo")
else() else()
message(WARNING "did not find /proc/cpuinfo -- not setting any x86-specific compilation variables") message(WARNING "did not find /proc/cpuinfo -- not setting any x86-specific compilation variables")
endif() endif()
eval_boolean(AUTODETECT_AVX512 DEFINED CPUFLAGS AND CPUFLAGS MATCHES "avx512") eval_boolean(AUTODETECT_AVX512 DEFINED CPUFLAGS AND CPUFLAGS MATCHES "avx512")
add_boolean_option(AVX512 ${AUTODETECT_AVX512} "Whether AVX512 intrinsics is available on the host processor" ON) add_boolean_option(AVX512 ${AUTODETECT_AVX512} "Whether AVX512 intrinsics is available on the host processor" ON)
...@@ -245,7 +245,7 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -ggdb2 -Wl,-rpath -Wl,${C ...@@ -245,7 +245,7 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -ggdb2 -Wl,-rpath -Wl,${C
# these changes are related to hardcoded path to include .h files # these changes are related to hardcoded path to include .h files
set(debugOpt "-ggdb2 -DMALLOC_CHECK_=3 -fno-delete-null-pointer-checks") set(debugOpt "-ggdb2 -DMALLOC_CHECK_=3 -fno-delete-null-pointer-checks")
set(CMAKE_C_FLAGS_DEBUG "${debugOpt} -O0") set(CMAKE_C_FLAGS_DEBUG "${debugOpt} -O0")
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${debugOpt} -O3") set(CMAKE_C_FLAGS_RELWITHDEBINFO "${debugOpt} -O2")
set(CMAKE_C_FLAGS_RELEASE "-O3") set(CMAKE_C_FLAGS_RELEASE "-O3")
# Enable assert() for RelWithDebInfo builds # Enable assert() for RelWithDebInfo builds
......
...@@ -21,9 +21,6 @@ ...@@ -21,9 +21,6 @@
#include "PHY/sse_intrin.h" #include "PHY/sse_intrin.h"
#include "tools_defs.h" #include "tools_defs.h"
#include <simde/simde-common.h>
#include <simde/arm/neon.h>
#include <simde/x86/sse.h>
void multadd_complex_vector_real_scalar(int16_t *x, void multadd_complex_vector_real_scalar(int16_t *x,
int16_t alpha, int16_t alpha,
......
...@@ -518,7 +518,6 @@ static inline void bfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t ...@@ -518,7 +518,6 @@ static inline void bfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t
*(y1) = vqaddq_s16(x02t,x13t); // x0 + x1f - x2 - x3f *(y1) = vqaddq_s16(x02t,x13t); // x0 + x1f - x2 - x3f
*(y3) = vqsubq_s16(x02t,x13t); // x0 - x1f - x2 + x3f *(y3) = vqsubq_s16(x02t,x13t); // x0 - x1f - x2 + x3f
} }
#endif
static inline void ibfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t *x3, static inline void ibfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t *x3,
int16x8_t *y0,int16x8_t *y1,int16x8_t *y2,int16x8_t *y3, int16x8_t *y0,int16x8_t *y1,int16x8_t *y2,int16x8_t *y3,
...@@ -7305,7 +7304,6 @@ int write_output(const char *fname,const char *vname,void *data,int length,int d ...@@ -7305,7 +7304,6 @@ int write_output(const char *fname,const char *vname,void *data,int length,int d
return 0; return 0;
} }
#ifdef MR_MAIN
int main(int argc, char**argv) int main(int argc, char**argv)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment