refs #55. Changed DTB_ENTRIES to DTB_DEFAULT_ENTRIES in x86 gemv_n kernel codes.

This commit is contained in:
traits 2011-09-06 14:14:07 +08:00
parent 90481ce742
commit b1fe26c45a
4 changed files with 6 additions and 6 deletions

View File

@ -48,7 +48,7 @@
#endif #endif
#ifndef P #ifndef P
#define P DTB_ENTRIES #define P DTB_DEFAULT_ENTRIES
#endif #endif
#define STACK 16 #define STACK 16

View File

@ -48,7 +48,7 @@
#endif #endif
#ifndef P #ifndef P
#define P DTB_ENTRIES #define P DTB_DEFAULT_ENTRIES
#endif #endif
#define STACK 16 #define STACK 16

View File

@ -44,11 +44,11 @@
#endif #endif
#if defined(PENTIUM4) || defined(ATHLON) #if defined(PENTIUM4) || defined(ATHLON)
#define P (DTB_ENTRIES / 2) #define P (DTB_DEFAULT_ENTRIES / 2)
#endif #endif
#ifndef P #ifndef P
#define P DTB_ENTRIES #define P DTB_DEFAULT_ENTRIES
#endif #endif
#define STACK 16 #define STACK 16

View File

@ -44,11 +44,11 @@
#endif #endif
#if defined(PENTIUM4) || defined(ATHLON) #if defined(PENTIUM4) || defined(ATHLON)
#define P ((DTB_ENTRIES) >> 1) #define P ((DTB_DEFAULT_ENTRIES) >> 1)
#endif #endif
#ifndef P #ifndef P
#define P DTB_ENTRIES #define P DTB_DEFAULT_ENTRIES
#endif #endif
#define STACK 16 #define STACK 16