Browse Source

_AXPY calibration for >2 cores

pull/1887/head
Andrew 7 years ago
parent
commit
c067c1fb7b
2 changed files with 6 additions and 2 deletions
  1. +5
    -1
      interface/axpy.c
  2. +1
    -1
      interface/zaxpy.c

+ 5
- 1
interface/axpy.c View File

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



+ 1
- 1
interface/zaxpy.c View File

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



Loading…
Cancel
Save