[release/3.2.2](feat) Sync verified commits from dev to release/3.2.2#807
Merged
Merged
Conversation
…lang#769) Co-authored-by: shaoyiyang <shaoyiyang@gitcode.com>
…riton-lang#779) Two bugs in the H selection logic: 1. The two-loop search in chooseH did not bound the first loop by maxH. When numTiles = 2 * p (p prime, e.g. 262142 = 2 * 131071), the smallest divisor >= hMin is p itself, vastly exceeding the UB-derived maxH. Fix: single downward search from maxH to hMin. 2. The maxH clamp (if maxH < 2, force maxH = 2) could override the UB budget conclusion. When footprintUnit is large enough that even H=2 overflows UB, the clamp forced coalescing anyway. Fix: bail out (return without coalescing) when maxH < 2. Also remove redundant comments throughout the file. Co-authored-by: xudezheng <xudezheng1@huawei.com>
hongziqi
approved these changes
Jun 25, 2026
* [ssbuffer](fix) process yield op in scf.if * [ssbuffer](fix) standardize attr name in SplitDataflow
bbb89ac to
0b309ce
Compare
|
📂 Code Owners — the following files under code ownership were modified. Please review:
🤖 Generated by labeler workflow |
WuTYSFG
approved these changes
Jun 25, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Title:
release/3.2.2 Sync verified commits from dev to release/3.2.2
Description:
This PR synchronizes the following verified commits from the
devbranch to therelease/3.2.2branch. All commits have passed CI verification and are ready for integration.Synchronized Commits:
Summary of Changes:
All changes have been cherry-picked from the
devbranch and verified locally. No conflicts were encountered during integration.