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
4 changes: 2 additions & 2 deletions mlir/utils/performance/parameterSweeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from typing import Callable, Iterable, List, Sequence, Optional, Tuple, TypeVar, Union

import perfRunner
from perfRunner import Paths, ConvConfiguration, getArch, getNumCU
from perfRunner import Paths, ConvConfiguration, getArch, getNumCU, getChip
from perfCommonUtils import CORRECT_RESULT_RE

@dataclass(frozen=True)
Expand Down Expand Up @@ -525,7 +525,7 @@ def main() -> bool:
print(f"""Unknown arch {arch}""", file=sys.stderr)

options = Options(debug=args.debug, quiet=args.quiet,
arch=arch, flags=rocmlir_gen_flags, concurrent_tests=args.jobs, numCU=getNumCU(arch))
arch=arch, flags=rocmlir_gen_flags, concurrent_tests=args.jobs, numCU=getNumCU(getChip()))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this related to the upstream merge?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no,
ParameterSweep script is failing, cherry picked changes from this PR to make it run
#1898

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sounds good, can we revert the changes once CI passes? and have separate PRs if needed. So, it's easier to keep track of changes (if they are part of a big upstream merge, it's not so easy).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll revert this once parameterSweeps passes

paths = perfRunner.create_paths(None, args.mlir_build_dir)

config = args.config
Expand Down