mirror of https://github.com/openXC7/prjxray.git
Increase number of tiles available for retries for 057.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
2830c4ab88
commit
e66ffeb3c2
|
|
@ -28,8 +28,11 @@ for {gets $fp line} {$line != ""} {gets $fp line} {
|
||||||
}
|
}
|
||||||
close $fp
|
close $fp
|
||||||
|
|
||||||
set int_l_tiles [randsample_list [llength $todo_lines] [filter [pblock_tiles roi] {TYPE == INT_L}]]
|
# each run can fail up to three times so we need to prepare 3*todo_lines tiles to work on
|
||||||
set int_r_tiles [randsample_list [llength $todo_lines] [filter [pblock_tiles roi] {TYPE == INT_R}]]
|
set tiles [expr 3 * [llength $todo_lines]]
|
||||||
|
|
||||||
|
set int_l_tiles [randsample_list $tiles [filter [pblock_tiles roi] {TYPE == INT_L}]]
|
||||||
|
set int_r_tiles [randsample_list $tiles [filter [pblock_tiles roi] {TYPE == INT_R}]]
|
||||||
|
|
||||||
set fp [open "design.txt" w]
|
set fp [open "design.txt" w]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue