Unify BUFFER_SIZE settings for x86_64 again to fix potentially fatal mismatch in DYNAMIC_ARCH builds
This commit is contained in:
parent
31d30312dc
commit
6c33764ca4
|
@ -228,14 +228,8 @@ static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
|
||||||
#define HUGE_PAGESIZE ( 2 << 20)
|
#define HUGE_PAGESIZE ( 2 << 20)
|
||||||
|
|
||||||
#ifndef BUFFERSIZE
|
#ifndef BUFFERSIZE
|
||||||
#if defined(SKYLAKEX)
|
|
||||||
#define BUFFER_SIZE (32 << 21)
|
|
||||||
#elif defined(HASWELL) || defined(ZEN)
|
|
||||||
#define BUFFER_SIZE (32 << 22)
|
#define BUFFER_SIZE (32 << 22)
|
||||||
#else
|
#else
|
||||||
#define BUFFER_SIZE (32 << 20)
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#define BUFFER_SIZE (32 << BUFFERSIZE)
|
#define BUFFER_SIZE (32 << BUFFERSIZE)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue