Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/benchmarks/generic/mpmflops/mpmflops.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/generic/mpmflops/mpmflops_s.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
8 changes: 4 additions & 4 deletions src/benchmarks/generic/whetstonemp/whetsmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down