From: Debian Science Team Date: Sun, 1 Nov 2020 09:47:26 +0000 (+0000) Subject: Reunify default BUFFER_SIZE on ARM64 to avoid crashes in DYNAMIC_ARCH X-Git-Tag: archive/raspbian/0.3.12+ds-2+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a792ef7a2128a1bed5de0a8418b79c5c32ff935a;p=openblas.git Reunify default BUFFER_SIZE on ARM64 to avoid crashes in DYNAMIC_ARCH Origin: upstream, https://github.com/xianyi/OpenBLAS/pull/2963/commits/7f26be4802042d7c54bd1645c54adc3e2ff72d50 Bug: https://github.com/xianyi/OpenBLAS/issues/2959 Bug-Debian: https://bugs.debian.org/970558 Last-Update: 2020-11-01 Last-Update: 2020-11-01 Gbp-Pq: Name reunify-arm64-buffersize.patch --- diff --git a/common_arm64.h b/common_arm64.h index 3149462..9cdded3 100644 --- a/common_arm64.h +++ b/common_arm64.h @@ -142,14 +142,8 @@ REALNAME: #define HUGE_PAGESIZE ( 4 << 20) #ifndef BUFFERSIZE -#if defined(CORTEXA57) -#define BUFFER_SIZE (20 << 20) -#elif defined(TSV110) || defined(EMAG8180) #define BUFFER_SIZE (32 << 20) #else -#define BUFFER_SIZE (16 << 20) -#endif -#else #define BUFFER_SIZE (32 << BUFFERSIZE) #endif