Adding back in collective option to the script file

master
Adrian Jackson 2021-05-18 13:02:20 +01:00
parent 6445267e10
commit d212b4547e
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) {