File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
flow/designs/asap7/mock-array-big Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 2020ce_width = (3 * 2.16 ) * pitch_scale
2121ce_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
2824margin_x = 2.16
2925margin_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
3535die_width = core_width + (2 * margin_x )
3636die_height = core_height + (2 * margin_y )
You can’t perform that action at this time.
0 commit comments