Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
macroplacement
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
macroplacement
Commits
89fa9a39
Unverified
Commit
89fa9a39
authored
Aug 25, 2022
by
Yucheng Wang
Committed by
GitHub
Aug 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
congestion bug fixes
parent
d25fe28e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
CodeElements/Plc_client/plc_client_os.py
+19
-2
No files found.
CodeElements/Plc_client/plc_client_os.py
View file @
89fa9a39
...
...
@@ -982,18 +982,35 @@ class PlacementCost(object):
or
(
c_i
==
ur_col
and
abs
(
x_dist
-
self
.
grid_width
)
>
1e-5
):
if_PARTIAL_OVERLAP_HORIZONTAL
=
True
self
.
V_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
+=
x_dist
*
self
.
vrouting_alloc
self
.
H_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
+=
y_dist
*
self
.
hrouting_alloc
if
if_PARTIAL_OVERLAP_VERTICAL
:
for
r_i
in
range
(
ur_row
,
ur_row
+
1
):
for
c_i
in
range
(
bl_col
,
ur_col
+
1
):
self
.
V_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
=
0
grid_cell_block
=
Block
(
x_max
=
(
c_i
+
1
)
*
self
.
grid_width
,
y_max
=
(
r_i
+
1
)
*
self
.
grid_height
,
x_min
=
c_i
*
self
.
grid_width
,
y_min
=
r_i
*
self
.
grid_height
)
x_dist
,
y_dist
=
self
.
__overlap_dist
(
module_block
,
grid_cell_block
)
self
.
V_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
-=
x_dist
*
self
.
vrouting_alloc
if
if_PARTIAL_OVERLAP_HORIZONTAL
:
for
r_i
in
range
(
bl_row
,
ur_row
+
1
):
for
c_i
in
range
(
ur_col
,
ur_col
+
1
):
self
.
H_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
=
0
grid_cell_block
=
Block
(
x_max
=
(
c_i
+
1
)
*
self
.
grid_width
,
y_max
=
(
r_i
+
1
)
*
self
.
grid_height
,
x_min
=
c_i
*
self
.
grid_width
,
y_min
=
r_i
*
self
.
grid_height
)
x_dist
,
y_dist
=
self
.
__overlap_dist
(
module_block
,
grid_cell_block
)
self
.
H_macro_routing_cong
[
r_i
*
self
.
grid_col
+
c_i
]
-=
y_dist
*
self
.
hrouting_alloc
def
__split_net
(
self
,
source_gcell
,
node_gcells
):
splitted_netlist
=
[]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment