File tree Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 1- set script_dir [file dirname [info script]]
2- source $script_dir /../../../src/mock-array/util.tcl
1+ # bazel has root of OpenROAD-flow-scripts as working directory
2+ foreach prefix {" " flow/} {
3+ set f ${prefix} designs/src/mock-array/util.tcl
4+ if {[file exists $f ]} {
5+ source $f
6+ }
7+ }
38
49set assignments [list \
510 top bottom \
Original file line number Diff line number Diff line change 1- set script_dir [file dirname [info script]]
2- source $script_dir /../../src/mock-array/util.tcl
1+ # bazel has root of OpenROAD-flow-scripts as working directory
2+ foreach prefix {" " flow/} {
3+ set f ${prefix} designs/src/mock-array/util.tcl
4+ if {[file exists $f ]} {
5+ source $f
6+ }
7+ }
38
49set assignments [list \
510 top \
Original file line number Diff line number Diff line change 22#
33# This fifo is from http://www.sunburst-design.com/papers/CummingsSNUG2002SJ_FIFO1.pdf
44
5- set script_dir [file dirname [info script]]
6- source $script_dir /../../src/mock-array/util.tcl
5+ source designs/src/mock-array/util.tcl
76
87set sdc_version 2.0
98
Original file line number Diff line number Diff line change 1- set script_dir [file dirname [info script]]
2- source $script_dir /../../src/mock-array/util.tcl
1+ # bazel has root of OpenROAD-flow-scripts as working directory
2+ foreach prefix {" " flow/} {
3+ set f ${prefix} designs/src/mock-array/util.tcl
4+ if {[file exists $f ]} {
5+ source $f
6+ }
7+ }
38
49set_io_pin_constraint -order -group -region bottom:* -pin_names [concat [match_pins .*] [match_pins clk input 1]]
You can’t perform that action at this time.
0 commit comments