We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccac608 + 5b54743 commit 894ecbeCopy full SHA for 894ecbe
flow/designs/asap7/mock-array-big/ce_die_area.py
@@ -1,6 +1,4 @@
1
import config
2
-
3
-margin_x = config.placement_grid_x * 8
4
-margin_y = config.placement_grid_y * 2
+import os
5
6
print(f'0 0 {config.ce_width} {config.ce_height}')
flow/designs/asap7/mock-array-big/config.py
@@ -17,10 +17,10 @@
17
placement_grid_y = 0.27
18
19
# Element size is set to multiple of 2.16
20
-ce_width = 12.96
21
-ce_height = 12.96
+ce_width = (3 * 2.16) * pitch_scale
+ce_height = (3 * 2.16) * pitch_scale
22
23
-# Element placement, can be controled by user
+# Element placement, can be controlled by user
24
ce_pitch_x = ce_width * pitch_scale
25
ce_pitch_y = ce_height * pitch_scale
26
0 commit comments