Skip to content

Commit dd086ce

Browse files
authored
Merge pull request #1088 from Pinata-Consulting/mock-array-big-floorplan-fixes
mock-array-big: more floreplan fixes
2 parents 555816e + 693810c commit dd086ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

flow/designs/asap7/mock-array-big/config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
ce_width = (3 * 2.16) * pitch_scale
2121
ce_height = (3 * 2.16) * pitch_scale
2222

23-
# Element placement, can be controlled by user
24-
ce_pitch_x = ce_width * pitch_scale
25-
ce_pitch_y = ce_height * pitch_scale
26-
2723
# top level core offset
2824
margin_x = 2.16
2925
margin_y = 2.16
3026

27+
# Element placement, can be controlled by user
28+
ce_pitch_x = ce_width + 2 * margin_x
29+
ce_pitch_y = ce_height + 2 * margin_y
30+
3131
# top level core size
32-
core_width = (ce_pitch_x * (cols + 0.5))
33-
core_height = (ce_pitch_y * (rows + 0.5))
32+
core_width = (ce_pitch_x * (cols + 1))
33+
core_height = (ce_pitch_y * (rows + 1))
3434

3535
die_width = core_width + (2 * margin_x)
3636
die_height = core_height + (2 * margin_y)

0 commit comments

Comments
 (0)