Merge pull request #3607 from martin-frbg/issue3603
Fix undefined PREFETCHSIZEs in PPC440 GEMV kernels
This commit is contained in:
commit
d09b9dd0cc
|
@ -131,6 +131,10 @@
|
||||||
|
|
||||||
#define alpha f27
|
#define alpha f27
|
||||||
|
|
||||||
|
#if defined(PPC440)
|
||||||
|
#define PREFETCHSIZE_A (3 * 4)
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(PPCG4)
|
#if defined(PPCG4)
|
||||||
#define PREFETCHSIZE_A (3 * 4)
|
#define PREFETCHSIZE_A (3 * 4)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -96,6 +96,11 @@
|
||||||
#define X1 r22
|
#define X1 r22
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(PPC440)
|
||||||
|
#define PREFETCHSIZE_A 42
|
||||||
|
#define PREFETCHSIZE_C 7
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(PPCG4)
|
#if defined(PPCG4)
|
||||||
#define PREFETCHSIZE_A 42
|
#define PREFETCHSIZE_A 42
|
||||||
#define PREFETCHSIZE_C 7
|
#define PREFETCHSIZE_C 7
|
||||||
|
|
Loading…
Reference in New Issue