Skip to content

Commit c9ccbb2

Browse files
Fix recursion error in parameterSweeps (#1995)
* Fix recursion error * Temporarily disable pre-commit python checks --------- Co-authored-by: Umang Yadav <[email protected]>
1 parent 2903596 commit c9ccbb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
- "!external/llvm-project/**"
2020
jobs:
2121
py-checks:
22+
if: false
2223
runs-on: ubuntu-latest
2324
steps:
2425
- uses: actions/checkout@v4

mlir/utils/performance/parameterSweeps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def __repr__(self):
6161
n={self.n!r}, c={self.c!r}, hi={self.hi!r}, wi={self.wi!r}, k={self.k!r}, y={self.y!r}, x={self.x!r},
6262
convStrideH={self.convStrideH!r}, convStrideW={self.convStrideW!r}, paddingHL={self.paddingHL!r}, paddingHR={self.paddingHR!r},
6363
paddingWL={self.paddingWL!r}, paddingWR={self.paddingWR!r}, dilationH={self.dilationH!r}, dilationW={self.dilationW!r},
64-
group={self.group!r}, arch={self.arch!r}, usesV4R1={self}, perfConfig={perf_config_str!r})"""
64+
group={self.group!r}, arch={self.arch!r}, usesV4R1={v4r1_str!r}, perfConfig={perf_config_str!r})"""
6565

6666
def generateMlirDriverCommandLine(self, rocmlir_gen_flags) -> Sequence[str]:
6767
direction = {'fwd': 'conv',

0 commit comments

Comments
 (0)