Skip to content

Commit 7599477

Browse files
committed
Add JitOptRepeat to JIT experimental AzDO pipeline
Add one job that runs JitOptRepeat on all functions, 2 repetitions.
1 parent e04d9aa commit 7599477

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

eng/pipelines/common/templates/runtimes/run-test-job.yml

+2
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,7 @@ jobs:
535535
scenarios:
536536
- jitosr_stress
537537
- jitpartialcompilation_pgo
538+
- jitoptrepeat
538539
${{ else }}:
539540
scenarios:
540541
- jitosr_stress
@@ -546,6 +547,7 @@ jobs:
546547
- jitphysicalpromotion_only
547548
- jitphysicalpromotion_full
548549
- jitrlcse
550+
- jitoptrepeat
549551
${{ if in(parameters.testGroup, 'jit-cfg') }}:
550552
scenarios:
551553
- jitcfg

src/tests/Common/testenvironment.proj

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
DOTNET_JitSynthesizeCounts;
8282
DOTNET_JitCheckSynthesizedCounts;
8383
DOTNET_JitRLCSEGreedy;
84+
DOTNET_JitEnableOptRepeat;
85+
DOTNET_JitOptRepeat;
86+
DOTNET_JitOptRepeatCount;
8487
</DOTNETVariables>
8588
</PropertyGroup>
8689
<ItemGroup>
@@ -239,6 +242,7 @@
239242
<TestEnvironment Include="syntheticpgo" TieredCompilation="1" TC_QuickJitForLoops="1" ReadyToRun="0" JitSynthesizeCounts="1" JitCheckSynthesizedCounts="1" />
240243
<TestEnvironment Include="syntheticpgo_blend" TieredPGO="1" TieredCompilation="1" TC_QuickJitForLoops="1" ReadyToRun="0" JitSynthesizeCounts="3" JitCheckSynthesizedCounts="1" />
241244
<TestEnvironment Include="jitrlcse" JitRLCSEGreedy="1" />
245+
<TestEnvironment Include="jitoptrepeat" JitEnableOptRepeat="1" JitOptRepeat="*" JitOptRepeatCount="2"/>
242246
<TestEnvironment Include="gcstandalone" Condition="'$(TargetsWindows)' == 'true'" GCName="clrgc.dll"/>
243247
<TestEnvironment Include="gcstandalone" Condition="'$(TargetsWindows)' != 'true'" GCName="libclrgc.so"/>
244248
<TestEnvironment Include="gcstandaloneserver" Condition="'$(TargetsWindows)' == 'true'" gcServer="1" GCName="clrgc.dll"/>

0 commit comments

Comments
 (0)