Browse Source

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

tags/v0.1alpha2.3^2
traits 14 years ago
parent
commit
b1fe26c45a
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      kernel/x86/gemv_n.S
  2. +1
    -1
      kernel/x86/qgemv_n.S
  3. +2
    -2
      kernel/x86/xgemv_n.S
  4. +2
    -2
      kernel/x86/zgemv_n.S

+ 1
- 1
kernel/x86/gemv_n.S View File

@@ -48,7 +48,7 @@
#endif

#ifndef P
#define P DTB_ENTRIES
#define P DTB_DEFAULT_ENTRIES
#endif

#define STACK 16


+ 1
- 1
kernel/x86/qgemv_n.S View File

@@ -48,7 +48,7 @@
#endif

#ifndef P
#define P DTB_ENTRIES
#define P DTB_DEFAULT_ENTRIES
#endif

#define STACK 16


+ 2
- 2
kernel/x86/xgemv_n.S View File

@@ -44,11 +44,11 @@
#endif

#if defined(PENTIUM4) || defined(ATHLON)
#define P (DTB_ENTRIES / 2)
#define P (DTB_DEFAULT_ENTRIES / 2)
#endif

#ifndef P
#define P DTB_ENTRIES
#define P DTB_DEFAULT_ENTRIES
#endif

#define STACK 16


+ 2
- 2
kernel/x86/zgemv_n.S View File

@@ -44,11 +44,11 @@
#endif

#if defined(PENTIUM4) || defined(ATHLON)
#define P ((DTB_ENTRIES) >> 1)
#define P ((DTB_DEFAULT_ENTRIES) >> 1)
#endif
#ifndef P
#define P DTB_ENTRIES
#define P DTB_DEFAULT_ENTRIES
#endif

#define STACK 16


Loading…
Cancel
Save