AMF-Placer  2.0
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
extractFixedUnits.tcl
Go to the documentation of this file.
1 set fo [open "${pahtPrefix}fixedUnits" "w"]
2 
3 set fixedUnits [get_cells $allCells -filter {IS_LOC_FIXED == true}]
4 
5 foreach curCell $fixedUnits {
6  set tmpLoc [get_property LOC $curCell]
7  set tmpBEL [get_property BEL $curCell]
8  puts $fo "name=> $curCell loc=> $tmpLoc bel=> $tmpBEL"
9 }
10 
11 close $fo