_AXPY calibration for >2 cores

This commit is contained in:
Andrew 2018-11-26 17:52:22 +01:00
parent c6dff2803c
commit c067c1fb7b
2 changed files with 6 additions and 2 deletions

View File

@ -44,7 +44,11 @@
#if defined(Z13) #if defined(Z13)
#define MULTI_THREAD_MINIMAL 200000 #define MULTI_THREAD_MINIMAL 200000
#else #else
#define MULTI_THREAD_MINIMAL 10000 #ifdef DOUBLE
#define MULTI_THREAD_MINIMAL 262144
#else
#define MULTI_THREAD_MINIMAL 524288
#endif
#endif #endif
#ifndef CBLAS #ifndef CBLAS

View File

@ -44,7 +44,7 @@
#if defined(Z13) #if defined(Z13)
#define MULTI_THREAD_MINIMAL 200000 #define MULTI_THREAD_MINIMAL 200000
#else #else
#define MULTI_THREAD_MINIMAL 10000 #define MULTI_THREAD_MINIMAL 131072
#endif #endif
#ifndef CBLAS #ifndef CBLAS