From 0007a0b0c11fa7c12b228883453368f105a4324b Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 16 Nov 2017 13:11:07 +0100 Subject: Initial commit. The following code is present: * the basis API * the BiCGSTAB solver * the pseudospectral linear system solver * helper APIs: - threadpool - logging - cpuid --- config.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..ffd98d8 --- /dev/null +++ b/config.h @@ -0,0 +1,12 @@ +#define HAVE_AVX 1 +#define HAVE_SSE 1 +#define HAVE_SSE3_EXTERNAL 1 +#define HAVE_AVX_EXTERNAL 1 +#define HAVE_FMA3_EXTERNAL 1 +#define ARCH_X86_64 1 +#define ARCH_X86 1 +#define HAVE_SCHED_GETAFFINITY 1 +#define HAVE_SYSCTL 1 +#define HAVE_OPENCL 0 +#define TD_VERIFY 0 +#define TD_POLAR 1 -- cgit v1.2.3