File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ extends:
103
103
jobTemplate : /eng/pipelines/common/build-coreclr-and-libraries-job.yml
104
104
buildConfig : release
105
105
platforms :
106
+ - linux_x64
107
+ - windows_x64
106
108
- linux_arm64
107
109
- windows_arm64
108
110
jobParameters :
@@ -217,7 +219,25 @@ extends:
217
219
projectFile : microbenchmarks.proj
218
220
runKind : micro
219
221
runJobTemplate : /eng/pipelines/coreclr/templates/run-performance-job.yml
220
- logicalmachine : ' perfampere'
222
+ logicalmachine : ' perfampere'
223
+
224
+ # run coreclr cloudvm microbenchmarks perf job
225
+ # this run is added temporarily for measuring AVX-512 performance
226
+ - template : /eng/pipelines/common/platform-matrix.yml
227
+ parameters :
228
+ jobTemplate : /eng/pipelines/coreclr/templates/perf-job.yml
229
+ buildConfig : release
230
+ runtimeFlavor : coreclr
231
+ platforms :
232
+ - linux_x64
233
+ - windows_x64
234
+ jobParameters :
235
+ testGroup : perf
236
+ liveLibrariesBuildConfig : Release
237
+ projectFile : microbenchmarks.proj
238
+ runKind : micro
239
+ runJobTemplate : /eng/pipelines/coreclr/templates/run-performance-job.yml
240
+ logicalmachine : ' cloudvm'
221
241
222
242
# Uncomment once we fix https://github.com/dotnet/performance/issues/1950
223
243
# # run coreclr linux crossgen perf job
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ if ($Internal) {
51
51
" perfsurf" { $Queue = " Windows.10.Arm64.Perf.Surf" }
52
52
" perfpixel4a" { $Queue = " Windows.10.Amd64.Pixel.Perf" }
53
53
" perfampere" { $Queue = " Windows.Server.Arm64.Perf" }
54
+ " cloudvm" { $Queue = " Windows.10.Amd64" }
54
55
Default { $Queue = " Windows.10.Amd64.19H1.Tiger.Perf" }
55
56
}
56
57
$PerfLabArguments = " --upload-to-perflab-container"
Original file line number Diff line number Diff line change @@ -255,6 +255,8 @@ if [[ "$internal" == true ]]; then
255
255
queue=OSX.1015.Amd64.Iphone.Perf
256
256
elif [[ " $logical_machine " == " perfampere" ]]; then
257
257
queue=Ubuntu.2004.Arm64.Perf
258
+ elif [[ " $logical_machine " == " cloudvm" ]]; then
259
+ queue=Ubuntu.1804.Amd64
258
260
elif [[ " $architecture " == " arm64" ]]; then
259
261
queue=Ubuntu.1804.Arm64.Perf
260
262
else
You can’t perform that action at this time.
0 commit comments