From 6a25ec479bdcb863633bf9b7c38da5d0e959494d Mon Sep 17 00:00:00 2001 From: Aleksandr Zubankov Date: Fri, 6 Feb 2026 12:55:00 +0300 Subject: [PATCH 1/2] fix whetstonemp for cpus with more than 64 cores --- src/benchmarks/generic/whetstonemp/whetsmp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/benchmarks/generic/whetstonemp/whetsmp.c b/src/benchmarks/generic/whetstonemp/whetsmp.c index d4570b53..7f389b83 100644 --- a/src/benchmarks/generic/whetstonemp/whetsmp.c +++ b/src/benchmarks/generic/whetstonemp/whetsmp.c @@ -72,12 +72,12 @@ int n1mult = 10; int n3mult = 5; int n7mult = 10; -double score[66][10]; -double timec[66][10]; +double score[166][10]; +double timec[166][10]; SPDP Check; -SPDP results[65][9]; +SPDP results[165][9]; -pthread_t tid[100]; +pthread_t tid[200]; pthread_attr_t *attrt = NULL; pthread_mutex_t mutext = PTHREAD_MUTEX_INITIALIZER; From a57b19454e278d27769d9780f85f89502d13c7ea Mon Sep 17 00:00:00 2001 From: Aleksandr Zubankov Date: Fri, 6 Feb 2026 12:58:52 +0300 Subject: [PATCH 2/2] fix mpmflops for cpus with more than 64 cores --- src/benchmarks/generic/mpmflops/mpmflops.c | 2 +- src/benchmarks/generic/mpmflops/mpmflops_s.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/benchmarks/generic/mpmflops/mpmflops.c b/src/benchmarks/generic/mpmflops/mpmflops.c index 623c67a9..d0c52f73 100644 --- a/src/benchmarks/generic/mpmflops/mpmflops.c +++ b/src/benchmarks/generic/mpmflops/mpmflops.c @@ -47,7 +47,7 @@ typedef struct { MYCALCS xcalcs; -pthread_t tid[100]; +pthread_t tid[200]; pthread_attr_t *attrt = NULL; pthread_mutex_t mutext = PTHREAD_MUTEX_INITIALIZER; diff --git a/src/benchmarks/generic/mpmflops/mpmflops_s.c b/src/benchmarks/generic/mpmflops/mpmflops_s.c index ef6418d3..160b6717 100644 --- a/src/benchmarks/generic/mpmflops/mpmflops_s.c +++ b/src/benchmarks/generic/mpmflops/mpmflops_s.c @@ -43,7 +43,7 @@ MYCALCS xcalcs; - pthread_t tid[100]; + pthread_t tid[200]; pthread_attr_t * attrt = NULL; pthread_mutex_t mutext = PTHREAD_MUTEX_INITIALIZER;