Browse Source

Use SkylakeX ?ASUM microkernel for Cooperlake/Sapphirerapids as well

tags/v0.3.25^2
Martin Kroeker GitHub 2 years ago
parent
commit
9019bc4945
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      kernel/x86_64/casum.c
  2. +1
    -1
      kernel/x86_64/dasum.c
  3. +1
    -1
      kernel/x86_64/sasum.c
  4. +1
    -1
      kernel/x86_64/zasum.c

+ 1
- 1
kernel/x86_64/casum.c View File

@@ -4,7 +4,7 @@
#define ABS_K(a) ((a) > 0 ? (a) : (-(a)))
#endif

#if defined(SKYLAKEX)
#if defined(SKYLAKEX) || defined(COOPERLAKE) || defined(SAPPHIRERAPIDS)
#include "casum_microk_skylakex-2.c"
#endif



+ 1
- 1
kernel/x86_64/dasum.c View File

@@ -4,7 +4,7 @@
#define ABS_K(a) ((a) > 0 ? (a) : (-(a)))
#endif

#if defined(SKYLAKEX)
#if defined(SKYLAKEX) || defined(COOPERLAKE) || defined(SAPPHIRERAPIDS)
#include "dasum_microk_skylakex-2.c"
#elif defined(HASWELL) || defined(ZEN)
#include "dasum_microk_haswell-2.c"


+ 1
- 1
kernel/x86_64/sasum.c View File

@@ -9,7 +9,7 @@

#endif

#if defined(SKYLAKEX)
#if defined(SKYLAKEX) || defined(COOPERLAKE) || defined(SAPPHIRERAPIDS)
#include "sasum_microk_skylakex-2.c"
#elif defined(HASWELL) || defined(ZEN)
#include "sasum_microk_haswell-2.c"


+ 1
- 1
kernel/x86_64/zasum.c View File

@@ -4,7 +4,7 @@
#define ABS_K(a) ((a) > 0 ? (a) : (-(a)))
#endif

#if defined(SKYLAKEX)
#if defined(SKYLAKEX) || defined(COOPERLAKE) || defined(SAPPHIRERAPIDS)
#include "zasum_microk_skylakex-2.c"
#endif



Loading…
Cancel
Save