From 06fc49ab3650ff0dd054a043578f27c9645c105d Mon Sep 17 00:00:00 2001 From: Andy Ayers Date: Thu, 22 Feb 2024 22:08:10 -0800 Subject: [PATCH] Add setup for RLCSE experiment (#3975) --- scripts/ci_setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ci_setup.py b/scripts/ci_setup.py index 815c85ef535..86bee43e5d4 100644 --- a/scripts/ci_setup.py +++ b/scripts/ci_setup.py @@ -418,6 +418,8 @@ def main(args: Any): experiment_config = variable_format % ('DOTNET_JitEnableCrossBlockLocalAssertionProp', '1') elif args.experiment_name == "gdv3": experiment_config = variable_format % ('DOTNET_JitGuardedDevirtualizationMaxTypeChecks', '3') + elif args.experiment_name == "rlcse": + experiment_config = variable_format % ('DOTNET_JitRLCSEGreedy', '1') output = ''