Skip to content

Commit 67be15e

Browse files
committed
py/tt: Add width=5 as a suported width in the placer
1 parent 8b69848 commit 67be15e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/tt/placer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def load_modules(self, mod_file):
194194
if mod.height not in [1,2,4]:
195195
raise RuntimeError(f"Module '{mod.name:s}' has invalid height {mod.height:d}")
196196

197-
if mod.width not in [1,2,3,4,6,8]:
197+
if mod.width not in [1,2,3,4,5,6,8]:
198198
raise RuntimeError(f"Module '{mod.name:s}' has invalid width {mod.width:d}")
199199

200200
if (mod.pos_x is not None) and (

0 commit comments

Comments
 (0)