summaryrefslogtreecommitdiff
path: root/Source/GPUVerify/CommandLineOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/GPUVerify/CommandLineOptions.cs')
-rw-r--r--Source/GPUVerify/CommandLineOptions.cs15
1 files changed, 4 insertions, 11 deletions
diff --git a/Source/GPUVerify/CommandLineOptions.cs b/Source/GPUVerify/CommandLineOptions.cs
index 03ec1728..ed20b08b 100644
--- a/Source/GPUVerify/CommandLineOptions.cs
+++ b/Source/GPUVerify/CommandLineOptions.cs
@@ -40,9 +40,7 @@ namespace GPUVerify
public static bool Unstructured = false;
- public static bool InterGroupRaceChecking = false;
-
- public static bool BarrierParameters = false;
+ public static bool OnlyIntraGroupRaceChecking = false;
public static int Parse(string[] args)
{
@@ -176,14 +174,9 @@ namespace GPUVerify
Unstructured = true;
break;
- case "-interGroupRaceChecking":
- case "/interGroupRaceChecking":
- InterGroupRaceChecking = true;
- break;
-
- case "-barrierParameters":
- case "/barrierParameters":
- BarrierParameters = true;
+ case "-onlyIntraGroupRaceChecking":
+ case "/onlyIntraGroupRaceChecking":
+ OnlyIntraGroupRaceChecking = true;
break;
default: