Skip to content

Commit

Permalink
Add JitOptRepeat to JIT experimental AzDO pipeline
Browse files Browse the repository at this point in the history
Add one job that runs JitOptRepeat on all functions, 2 repetitions.
  • Loading branch information
BruceForstall committed Mar 27, 2024
1 parent e04d9aa commit 7599477
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eng/pipelines/common/templates/runtimes/run-test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ jobs:
scenarios:
- jitosr_stress
- jitpartialcompilation_pgo
- jitoptrepeat
${{ else }}:
scenarios:
- jitosr_stress
Expand All @@ -546,6 +547,7 @@ jobs:
- jitphysicalpromotion_only
- jitphysicalpromotion_full
- jitrlcse
- jitoptrepeat
${{ if in(parameters.testGroup, 'jit-cfg') }}:
scenarios:
- jitcfg
Expand Down
4 changes: 4 additions & 0 deletions src/tests/Common/testenvironment.proj
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@
DOTNET_JitSynthesizeCounts;
DOTNET_JitCheckSynthesizedCounts;
DOTNET_JitRLCSEGreedy;
DOTNET_JitEnableOptRepeat;
DOTNET_JitOptRepeat;
DOTNET_JitOptRepeatCount;
</DOTNETVariables>
</PropertyGroup>
<ItemGroup>
Expand Down Expand Up @@ -239,6 +242,7 @@
<TestEnvironment Include="syntheticpgo" TieredCompilation="1" TC_QuickJitForLoops="1" ReadyToRun="0" JitSynthesizeCounts="1" JitCheckSynthesizedCounts="1" />
<TestEnvironment Include="syntheticpgo_blend" TieredPGO="1" TieredCompilation="1" TC_QuickJitForLoops="1" ReadyToRun="0" JitSynthesizeCounts="3" JitCheckSynthesizedCounts="1" />
<TestEnvironment Include="jitrlcse" JitRLCSEGreedy="1" />
<TestEnvironment Include="jitoptrepeat" JitEnableOptRepeat="1" JitOptRepeat="*" JitOptRepeatCount="2"/>
<TestEnvironment Include="gcstandalone" Condition="'$(TargetsWindows)' == 'true'" GCName="clrgc.dll"/>
<TestEnvironment Include="gcstandalone" Condition="'$(TargetsWindows)' != 'true'" GCName="libclrgc.so"/>
<TestEnvironment Include="gcstandaloneserver" Condition="'$(TargetsWindows)' == 'true'" gcServer="1" GCName="clrgc.dll"/>
Expand Down

0 comments on commit 7599477

Please sign in to comment.