Fix: parallelize A5 dummy task resolution - #1679
Open
yanghaoran29 wants to merge 1 commit into
Open
Conversation
📝 WalkthroughWalkthroughThe scheduler now drains dummy dependency-only tasks on scheduler threads 0–3 in batches of eight. The dummy-task test matrix removes per-case AICPU thread settings and adds a dense fanout/fanin case. ChangesDummy-task scheduler execution
Estimated code review effort: 3 (Moderate) | ~20 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
yanghaoran29
force-pushed
the
fix/parallelize-a5-dummy-task-resolution
branch
2 times, most recently
from
August 4, 2026 11:27
aaa9270 to
3bb95af
Compare
Allow all four default A5 scheduler threads to share dependency-only task resolution through the MPMC ready queue and per-slot atomic fanout path. Use smaller batches to distribute work across schedulers.
yanghaoran29
force-pushed
the
fix/parallelize-a5-dummy-task-resolution
branch
from
August 5, 2026 03:55
3bb95af to
ddeb769
Compare
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.
Summary
Performance
Measured sequentially on the same Ascend950PR device through
task-submit; both variants use batch 8, defaultaicpu_thread_num=5, independent worktrees/venvs, and 100 rounds per workload.The shared-producer workload shows a modest improvement. The immediately-ready result is within the +/-2% noise margin; shared queue and per-slot atomic contention limit scaling.
Testing
scheduler_dispatch.cpp: passedtask-submit: passedAddresses A3 of #1582.