-
Notifications
You must be signed in to change notification settings - Fork 54
Support Fuse Operation on MSCCPP DSL #547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Binyang2014
reviewed
Jun 9, 2025
Binyang2014
reviewed
Jun 14, 2025
python/mscclpp/language/tests/unit_tests/group_load_reduce_test.py
Outdated
Show resolved
Hide resolved
Binyang2014
approved these changes
Jun 17, 2025
python/mscclpp/language/tests/unit_tests/signal_wait/relaxed_signal_wait_test.py
Outdated
Show resolved
Hide resolved
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.
Fuse Operations
Rank:
Memory Channel:
Signal + Signal = Signal (Operations should use different channels)
Wait + Wait = Wait (Operations should use different channels)
Relax Signal + Relax Signal = Relax Signal (Operations should use different channels)
Relax Wait + Relax Wait = Relax Wait (Operations should use different channels)
Get + Get = Get (Operations size should match)
Put + Put = Put (Operations size should match)
Put Packet + Put Packet = Put Packet (Operations size should match)
Reduce + Reduce = Reduce (Operations should have the same local_src_buff, local_dst_buff and reduce_operation)
Reduce Packet + Reduce Packet = Reduce Packet (Operations should have the same local_src_buff, local_dst_buff and reduce_operation)
Read Reduce + Read Reduce = Read Reduce (Operations should have the same local_src_buff, local_dst_buff and reduce_operation)
Reduce + Put = Reduce Send (Operations should match the reduce dst_buff and the put src_buff)
Reduce Send + Put = Reduce Send (Operations should match the reduce dst_buff and the put src_buff)
Read Reduce + Put = Read Reduce Send (Operations should match the reduce dst_buff and the put src_buff)
Read Reduce Send + Put = Read Reduce Send (Operations should match the reduce dst_buff and the put src_buff)
Reduce Packet + Put Packet = Reduce Send Packet (Operations should match the reduce dst_buff and the put src_buff)
Reduce Send Packet + Put Packet = Reduce Send Packet (Operations should match the reduce dst_buff and the put src_buff)
Port Channel: