Merge pull request #373 from adrianjhpc/master

Add in collective options for script file
master
Julian Kunkel 2021-05-18 14:08:26 +02:00 committed by GitHub
commit bff3202806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -220,6 +220,8 @@ void DecodeDirective(char *line, IOR_param_t *params, options_all_t * module_opt
params->intraTestBarriers = atoi(value);
} else if (strcasecmp(option, "verbose") == 0) {
params->verbose = atoi(value);
} else if (strcasecmp(option, "collective") == 0) {
params->collective = atoi(value);
} else if (strcasecmp(option, "settimestampsignature") == 0) {
params->setTimeStampSignature = atoi(value);
} else if (strcasecmp(option, "dataPacketType") == 0) {