From 9579bd47e53fb65cca2f27e92340d1c08e745068 Mon Sep 17 00:00:00 2001 From: austinpagan Date: Wed, 10 Mar 2021 18:19:12 -0500 Subject: [PATCH] Modifying a couple paramaters in the "POWER10"-specific section of param.h, for performance enhancements for SGEMM and DGEMM. --- param.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/param.h b/param.h index 9ba25de..262f52c 100644 --- a/param.h +++ b/param.h @@ -2455,13 +2455,13 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define ZGEMM_DEFAULT_UNROLL_M 8 #define ZGEMM_DEFAULT_UNROLL_N 2 -#define SGEMM_DEFAULT_P 832 -#define DGEMM_DEFAULT_P 320 +#define SGEMM_DEFAULT_P 512 +#define DGEMM_DEFAULT_P 384 #define CGEMM_DEFAULT_P 512 #define ZGEMM_DEFAULT_P 256 -#define SGEMM_DEFAULT_Q 1026 -#define DGEMM_DEFAULT_Q 960 +#define SGEMM_DEFAULT_Q 512 +#define DGEMM_DEFAULT_Q 512 #define CGEMM_DEFAULT_Q 1026 #define ZGEMM_DEFAULT_Q 1026 -- 2.7.4