Merge pull request #633 from litghost/fix_retries_for_pip_bi

Increase number of tiles available for retries for 057.
This commit is contained in:
litghost 2019-02-08 10:32:53 -08:00 committed by GitHub
commit e66cdef8a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -28,8 +28,11 @@ for {gets $fp line} {$line != ""} {gets $fp line} {
}
close $fp
set int_l_tiles [randsample_list [llength $todo_lines] [filter [pblock_tiles roi] {TYPE == INT_L}]]
set int_r_tiles [randsample_list [llength $todo_lines] [filter [pblock_tiles roi] {TYPE == INT_R}]]
# each run can fail up to three times so we need to prepare 3*todo_lines tiles to work on
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]