Skip to content

Commit e26dd77

Browse files
authored
Merge pull request #8808 from The-OpenROAD-Project-staging/update-sta
Update sta
2 parents 8422739 + 015d230 commit e26dd77

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

src/gpl/src/mbff.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2483,6 +2483,7 @@ void MBFF::ReadPaths()
24832483
20,
24842484
num_paths_,
24852485
true,
2486+
true,
24862487
-sta::INF,
24872488
sta::INF,
24882489
true,

src/gui/src/staGuiInterface.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ void STAGuiInterface::updatePathGroups()
969969
search->makePathGroups(1, /* group count */
970970
1, /* endpoint count*/
971971
false, /* unique pins */
972+
false, /* unique edges */
972973
-sta::INF, /* min slack */
973974
sta::INF, /* max slack*/
974975
nullptr, /* group names */
@@ -1135,7 +1136,8 @@ TimingPathList STAGuiInterface::getTimingPaths(
11351136
// group_count, endpoint_count, unique_pins
11361137
max_path_count_,
11371138
one_path_per_endpoint_ ? 1 : max_path_count_,
1138-
true,
1139+
true, // unique pins
1140+
true, // unique edges
11391141
-sta::INF,
11401142
sta::INF, // slack_min, slack_max,
11411143
true, // sort_by_slack

src/par/src/ArtNetSpec.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ void PartitionMgr::BuildTimingPath(int& Dmax, int& MDmax)
223223
// group_count, endpoint_count, unique_pins
224224
group_count, // number of paths in total
225225
endpoint_count, // number of paths for each endpoint
226-
true,
226+
true, // unique pins
227+
true, // unique edges
227228
-sta::INF,
228229
sta::INF, // slack_min, slack_max,
229230
true, // sort_by_slack

src/par/src/TritonPart.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,8 @@ void TritonPart::BuildTimingPaths()
15711571
// group_count, endpoint_count, unique_pins
15721572
group_count, // number of paths in total
15731573
endpoint_count, // number of paths for each endpoint
1574-
true,
1574+
true, // unique pins
1575+
true, // unique edges
15751576
-sta::INF,
15761577
sta::INF, // slack_min, slack_max,
15771578
true, // sort_by_slack

0 commit comments

Comments
 (0)