-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Arm64/Sve: Fix a SVE issue and add CI leg for testing SVE with AltJit (…
…#104998) * Add ci legs to test SVE using AltJit * fix a check for HWIntrinsic * add gentree.cpp for now * Revert "add gentree.cpp for now" This reverts commit ca23305. * review feedback * just have 1 CI leg
- Loading branch information
1 parent
d35f302
commit 513b503
Showing
5 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This pipeline only runs on GitHub PRs, not on merges. | ||
trigger: none | ||
|
||
# Only run on specific changes to the JIT directory that are likely to affect Sve. | ||
pr: | ||
branches: | ||
include: | ||
- main | ||
paths: | ||
include: | ||
- src/coreclr/jit/hwintrinsiccodegenarm64.cpp | ||
- src/coreclr/jit/hwintrinsiclistarm64sve.h | ||
- src/coreclr/jit/hwintrinsicarm64.cpp | ||
- src/coreclr/jit/instrsarm64sve.h | ||
- src/coreclr/jit/emitarm64sve.cpp | ||
- src/coreclr/jit/emitfmtsarm64sve.h | ||
- src/coreclr/jit/lsraarm64.cpp | ||
|
||
schedules: | ||
- cron: "30 19 * * 6" | ||
displayName: Sat at 11:30 AM (UTC-8:00) | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
variables: | ||
- template: /eng/pipelines/common/variables.yml | ||
|
||
extends: | ||
template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml | ||
parameters: | ||
platforms: | ||
# just run on windows for now, because abi is universal for other platforms | ||
- windows_x64 | ||
testGroup: jitstress-isas-sve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters