-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[delay_info_main] Add state critical path for procs
Since designing a proc can require understanding the delay cost of computing the state before the next activation can proceed, we add the critical path for each state element to the output of `delay_info_main`. Example of an added section: ``` Critical path for state element __state: 4ps (+ 0ps): __state_next: () = next_value(param=__state, value=send.24, id=25) 4ps (+ 1ps): send.24: token = send(tok__3: token, bit_slice.16: bits[32], channel=serialized_decomposer__result4, id=24) 3ps (+ 1ps): tok__3: token = send(tok__2: token, bit_slice.14: bits[32], channel=serialized_decomposer__result3, id=23) 2ps (+ 1ps): tok__2: token = send(tok__1: token, bit_slice.12: bits[32], channel=serialized_decomposer__result2, id=22) 1ps (+ 1ps): tok__1: token = send(tok: token, bit_slice.10: bits[32], channel=serialized_decomposer__result1, id=21) 0ps (+ 0ps): tok: token = after_all(__state: token, input_tok: token, id=9) 0ps (+ 0ps): __state: token = state_read(state_element=__state, id=2) ``` Fixes #1770 PiperOrigin-RevId: 705533866
- Loading branch information
1 parent
d4fd4db
commit 9c3328d
Showing
6 changed files
with
65 additions
and
5 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
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