Merge pull request #3607 from martin-frbg/issue3603

Fix undefined PREFETCHSIZEs in PPC440 GEMV kernels
This commit is contained in:
Martin Kroeker 2022-04-16 12:54:35 +02:00 committed by GitHub
commit d09b9dd0cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -131,6 +131,10 @@
#define alpha f27
#if defined(PPC440)
#define PREFETCHSIZE_A (3 * 4)
#endif
#if defined(PPCG4)
#define PREFETCHSIZE_A (3 * 4)
#endif

View File

@ -96,6 +96,11 @@
#define X1 r22
#if defined(PPC440)
#define PREFETCHSIZE_A 42
#define PREFETCHSIZE_C 7
#endif
#if defined(PPCG4)
#define PREFETCHSIZE_A 42
#define PREFETCHSIZE_C 7