refactor: clean up sendability naming and flush-gate count typing - #813
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
📜 Recent review details🧰 Additional context used📓 Path-based instructions (3)**/*.{cpp,cc,cxx,h,hpp}📄 CodeRabbit inference engine (.github/copilot-instructions.md)
Files:
**/*.{hpp,cpp}📄 CodeRabbit inference engine (AGENTS.md)
Files:
**/*.hpp📄 CodeRabbit inference engine (AGENTS.md)
Files:
🔇 Additional comments (5)
📝 WalkthroughWalkthroughThe PR renames a sendability concept and updates its specialization. It also changes ChangesSendability concept rename
Flush gate count ownership
Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related issues
Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
pcanal
left a comment
There was a problem hiding this comment.
LGTM (although the commit log commit enhance with more detail on the 'why' of the changes).
Code
move_constructible_onlytosendable_by_move.flush_gate::committed_counts_by value instead of through a shared pointer.committed_counts()androll_up_child()to use references.Tests
data_cell_countsby value.Replaces storing a committed-counts data member as a shared pointer by storing it by value instead.
Before PR #540 was merged, the committed-counts data member needed to be sent to downstream
nodes. The type of the member was not copyable, so a shared pointer to that type was used instead.
This has been fixed with this PR.