mirror of https://github.com/openXC7/prjxray.git
Merge pull request #799 from antmicro/prjxray_stabilization_052_pip_clkin
052-pip-clkin: Exclude potentially conflicting PIP + nodes from a run.
This commit is contained in:
commit
3b59402eb9
|
|
@ -1,4 +1,4 @@
|
|||
MAKETODO_FLAGS=--re "^INT_[LR].CLK"
|
||||
TODO_N = 10
|
||||
TODO_N = 5
|
||||
include ../int_loop.mk
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,35 @@
|
|||
source "$::env(XRAY_DIR)/utils/utils.tcl"
|
||||
proc randsample_list_unique {num lst {axis ""}} {
|
||||
set rlst {}
|
||||
set coords {}
|
||||
set regexp_string {[A-Z_]+(X[0-9]+)(Y[0-9]+)}
|
||||
for {set i 0} {$i<$num} {incr i} {
|
||||
set j [expr {int(rand()*[llength $lst])}]
|
||||
set element [lindex $lst $j]
|
||||
if {$axis != ""} {
|
||||
regexp $regexp_string $element dummy x_coord y_coord
|
||||
set attempts 0
|
||||
if {$axis == "X"} {
|
||||
while {[lsearch -regexp $rlst "\[A-Z_\]+${x_coord}Y\[0-9\]+"] >= 0 && $attempts < 10} {
|
||||
incr attempts
|
||||
set j [expr {int(rand()*[llength $lst])}]
|
||||
set element [lindex $lst $j]
|
||||
regexp $regexp_string $element dummy x_coord y_coord
|
||||
}
|
||||
} elseif {$axis == "Y"} {
|
||||
while {[lsearch -regexp $rlst "\[A-Z_\]+X\[0-9\]+${y_coord}"] >= 0 && $attempts < 10} {
|
||||
incr attempts
|
||||
set j [expr {int(rand()*[llength $lst])}]
|
||||
set element [lindex $lst $j]
|
||||
regexp $regexp_string $element dummy x_coord y_coord
|
||||
}
|
||||
}
|
||||
}
|
||||
lappend rlst $element
|
||||
set lst [lreplace $lst $j $j]
|
||||
}
|
||||
return $rlst
|
||||
}
|
||||
|
||||
create_project -force -part $::env(XRAY_PART) design design
|
||||
|
||||
|
|
@ -29,11 +60,13 @@ for {gets $fp line} {$line != ""} {gets $fp line} {
|
|||
}
|
||||
close $fp
|
||||
|
||||
# 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 tiles [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 int_l_tiles [randsample_list_unique $tiles [filter [pblock_tiles roi] {TYPE == INT_L}] "X"]
|
||||
set int_r_tiles [randsample_list_unique $tiles [filter [pblock_tiles roi] {TYPE == INT_R}] "X"]
|
||||
set to_nodes {}
|
||||
set src_wires {}
|
||||
set dst_wires {}
|
||||
|
||||
for {set idx 0} {$idx < [llength $todo_lines]} {incr idx} {
|
||||
set line [lindex $todo_lines $idx]
|
||||
|
|
@ -41,7 +74,18 @@ for {set idx 0} {$idx < [llength $todo_lines]} {incr idx} {
|
|||
|
||||
set tile_type [lindex $line 0]
|
||||
set dst_wire [lindex $line 1]
|
||||
if {[lsearch $dst_wires $dst_wire] >= 0} {
|
||||
puts "DESTINATION WIRE ALREADY USED - SKIPPING"
|
||||
continue
|
||||
}
|
||||
lappend dst_wires $dst_wire
|
||||
|
||||
set src_wire [lindex $line 2]
|
||||
if {[lsearch $src_wires $src_wire] >= 0} {
|
||||
puts "SOURCE WIRE ALREADY USED - SKIPPING"
|
||||
continue
|
||||
}
|
||||
lappend src_wires $src_wire
|
||||
|
||||
set mylut [create_cell -reference LUT1 mylut_$idx]
|
||||
set myff [create_cell -reference FDRE myff_$idx]
|
||||
|
|
@ -49,50 +93,52 @@ for {set idx 0} {$idx < [llength $todo_lines]} {incr idx} {
|
|||
set mynet [create_net mynet_$idx]
|
||||
connect_net -net $mynet -objects "$mylut/O $myff/C"
|
||||
|
||||
set tries 0
|
||||
while {1} {
|
||||
set tile_idx [expr $tries + [expr $idx * 3]]
|
||||
incr tries
|
||||
set tile_idx $idx
|
||||
if {$tile_type == "INT_L"} {set tile [lindex $int_l_tiles $tile_idx]; set other_tile [lindex $int_r_tiles $tile_idx]}
|
||||
if {$tile_type == "INT_R"} {set tile [lindex $int_r_tiles $tile_idx]; set other_tile [lindex $int_l_tiles $tile_idx]}
|
||||
|
||||
if {$tile_type == "INT_L"} {set tile [lindex $int_l_tiles $tile_idx]; set other_tile [lindex $int_r_tiles $tile_idx]}
|
||||
if {$tile_type == "INT_R"} {set tile [lindex $int_r_tiles $tile_idx]; set other_tile [lindex $int_l_tiles $tile_idx]}
|
||||
set driver_site [get_sites -of_objects [get_site_pins -of_objects [get_nodes -downhill \
|
||||
-of_objects [get_nodes -of_objects [get_wires $other_tile/CLK*0]]]]]
|
||||
|
||||
set driver_site [get_sites -of_objects [get_site_pins -of_objects [get_nodes -downhill \
|
||||
-of_objects [get_nodes -of_objects [get_wires $other_tile/CLK*0]]]]]
|
||||
set recv_site [get_sites -of_objects [get_site_pins -of_objects [get_nodes -downhill \
|
||||
-of_objects [get_nodes -of_objects [get_wires $tile/$dst_wire]]]]]
|
||||
|
||||
set recv_site [get_sites -of_objects [get_site_pins -of_objects [get_nodes -downhill \
|
||||
-of_objects [get_nodes -of_objects [get_wires $tile/$dst_wire]]]]]
|
||||
set_property -dict "LOC $driver_site BEL A6LUT" $mylut
|
||||
set ffbel [lindex "AFF A5FF BFF B5FF CFF C5FF DFF D5FF" [expr {int(rand()*8)}]]
|
||||
set_property -dict "LOC $recv_site BEL $ffbel" $myff
|
||||
|
||||
set_property -dict "LOC $driver_site BEL A6LUT" $mylut
|
||||
set ffbel [lindex "AFF A5FF BFF B5FF CFF C5FF DFF D5FF" [expr {int(rand()*8)}]]
|
||||
set_property -dict "LOC $recv_site BEL $ffbel" $myff
|
||||
|
||||
puts "ffbel $ffbel"
|
||||
puts "tile $tile"
|
||||
|
||||
set rc [route_via $mynet "$tile/$src_wire $tile/$dst_wire" 0]
|
||||
if {$rc != 0} {
|
||||
puts "ROUTING DONE!"
|
||||
break
|
||||
}
|
||||
|
||||
# fallback
|
||||
puts "WARNING: failed to route net"
|
||||
write_checkpoint -force route_todo_$idx.$tries.fail.dcp
|
||||
|
||||
puts "Rolling back route"
|
||||
set_property is_route_fixed 0 $mynet
|
||||
set_property is_bel_fixed 0 $mylut
|
||||
set_property is_loc_fixed 1 $mylut
|
||||
set_property is_bel_fixed 0 $myff
|
||||
set_property is_loc_fixed 1 $myff
|
||||
route_design -unroute -nets $mynet
|
||||
|
||||
# sometimes it gets stuck in specific src -> dst locations
|
||||
if {$tries >= 3} {
|
||||
error "ERROR: failed to route net after $tries tries"
|
||||
puts "ffbel $ffbel"
|
||||
puts "tile $tile"
|
||||
puts "other tile: $other_tile"
|
||||
set to_node_name_dst [get_nodes -of_objects [get_wires $tile/$dst_wire]]
|
||||
puts "to_node_name_dst: $to_node_name_dst"
|
||||
if {[regexp {[A-Z_]+(X[0-9]+)(Y[0-9]+)} $to_node_name_dst dummy x_coord_dst y_coord_dst]} {
|
||||
if {[lsearch $to_nodes $x_coord_dst] == -1} {
|
||||
lappend to_nodes $x_coord_dst
|
||||
} else {
|
||||
puts "TO_NODE ALREADY USED - SKIPPING"
|
||||
continue
|
||||
}
|
||||
}
|
||||
set to_node_name_src [get_nodes -of_objects [get_wires $tile/$src_wire]]
|
||||
puts "to_node_name_src: $to_node_name_src"
|
||||
if {[regexp {[A-Z_]+(X[0-9]+)(Y[0-9]+)} $to_node_name_src dummy x_coord_src y_coord_src]} {
|
||||
if {[lsearch $to_nodes $x_coord_src] == -1} {
|
||||
lappend to_nodes $x_coord_src
|
||||
} elseif {$x_coord_src != $x_coord_dst} {
|
||||
puts "TO_NODE ALREADY USED - SKIPPING"
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
set rc [route_via $mynet "$tile/$src_wire $tile/$dst_wire" 0]
|
||||
if {$rc != 0} {
|
||||
puts "ROUTING DONE!"
|
||||
continue
|
||||
}
|
||||
|
||||
write_checkpoint -force route_todo_$idx.fail.dcp
|
||||
error "ERROR: failed to route net"
|
||||
}
|
||||
|
||||
route_design
|
||||
|
|
|
|||
|
|
@ -91,8 +91,7 @@ $(eval $(call fuzzer,048-int-piplist,005-tilegrid))
|
|||
$(eval $(call fuzzer,049-int-imux-gfan,048-int-piplist))
|
||||
$(eval $(call fuzzer,050-pip-seed,048-int-piplist))
|
||||
$(eval $(call fuzzer,051-pip-imuxlout-bypalts,048-int-piplist))
|
||||
#Disable until #783 is fixed
|
||||
#$(eval $(call fuzzer,052-pip-clkin,048-int-piplist))
|
||||
$(eval $(call fuzzer,052-pip-clkin,048-int-piplist))
|
||||
$(eval $(call fuzzer,053-pip-ctrlin,048-int-piplist))
|
||||
$(eval $(call fuzzer,054-pip-fan-alt,048-int-piplist))
|
||||
$(eval $(call fuzzer,055-pip-gnd,048-int-piplist))
|
||||
|
|
|
|||
Loading…
Reference in New Issue