forked from google/xls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change channel reference in send/recive nodes from numeric id to chan…
…nel name. For example: ``` s: token = send(tok, x, channel_id=42) ``` becomes ``` s: token = send(tok, x, channel=my_channel) ``` The proc-scoped channels refactor will have two channel constructs: a channel reference and the channel object itself. The channel itself will have a unique numeric identifier, but the channel reference will simply have a name and be bound to channel at "elaboration" time. Send/receive nodes will refer to the channel reference which is name-only. As a marginal benefit, the IR is more readable. PiperOrigin-RevId: 585728854
- Loading branch information
1 parent
e029cc3
commit 25b2a65
Showing
74 changed files
with
779 additions
and
744 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.