Skip to content

Commit

Permalink
Fixed issue with param and config syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisJenkinsCS committed Jul 14, 2017
1 parent 24a652a commit 51dd86e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions benchmark/benchmark.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ config var nJitter = 0;
// of elements per locale the same.
config var weak = false;
// Below are flags to determine which queue to test for...
param config var isFIFO = false;
param config var isMPMC = false;
param config var isSync = false;
param config var isCCSynch = false;
param config var isList = false;
config param isFIFO = false;
config param isMPMC = false;
config param isSync = false;
config param isCCSynch = false;
config param isList = false;
// Whether or not we log communications and per-locale information.
config var logLocaleInfo = false;
config var verboseLog = false;
Expand Down

0 comments on commit 51dd86e

Please sign in to comment.