Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6542e7e
Squashed 'external/llvm-project/' changes from 3332d18c2507..e8215edf…
umangyadav Jun 24, 2025
ea8c92c
Merge commit '6542e7e6b4744737fae5e3abbfe720bb1fc4786b' into upstream…
umangyadav Jun 24, 2025
3cfa54d
Fixes for external
umangyadav Jun 24, 2025
8de7cfc
[External] Remove files that no longer exists in external
umangyadav Jun 24, 2025
97602db
[External] Remove files that no longer exists in external
umangyadav Jun 24, 2025
d7237d5
[External] Some more fixes
umangyadav Jun 24, 2025
1ae19b9
Apply rocMLIR patches for external
umangyadav Jun 24, 2025
7d04ae0
Remove disabled verification tests
umangyadav Jun 24, 2025
ddd649a
Fixes for https://github.com/llvm/llvm-project/pull/144636
umangyadav Jun 24, 2025
15e6427
Fixes for rocMLIR
umangyadav Jun 24, 2025
289459b
Fixes required due to https://github.com/llvm/llvm-project/pull/144636
umangyadav Jun 24, 2025
f905655
Changes in rocMLIR due to https://github.com/llvm/llvm-project/pull/1…
umangyadav Jun 24, 2025
23cbcfb
Fix runner-pipelines.mlir test
umangyadav Jun 24, 2025
31e77d3
Update librockcompiler_deps
umangyadav Jun 24, 2025
2ccc1bb
Formating
umangyadav Jun 24, 2025
3138a41
Enable Navi4x in CI
umangyadav Jun 24, 2025
7f30da1
Fix parameterSweeps
umangyadav Jun 24, 2025
d7f9b54
Fix parameterSweeps scripts
umangyadav Jun 25, 2025
e1b3a47
Address review comments, Revert changes for Navi4x in Jenkinsfile and…
umangyadav Jun 25, 2025
4a8c3ab
Merge branch 'develop' into upstream_merge_55
umangyadav Jun 25, 2025
966a9b3
Merge branch 'develop' into upstream_merge_55
umangyadav Jun 26, 2025
74eb560
Merge branch 'develop' into upstream_merge_55
dorde-antic Jul 2, 2025
7a50d7f
Merge branch 'develop' into upstream_merge_55
dorde-antic Jul 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions mlir/utils/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,8 @@ boolean shouldRunFromCodepath(String codepath) {
if (params.canXdlops && (params.disableNavi3x == false) && (codepath == "navi3x")) {
return true
}
// Run navi4x on private nightly CI only
if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x") &&
params.nightly) {
// Run navi4x on private CI if it is not disabled
if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x")) {
return true;
}
return false
Expand Down