<@U018LA3KZCJ> I am not clear on reason for readin...
# openroad
d
@User I am not clear on reason for reading SDC in Spef generation in openroad/or_rcx.tcl scripts --------------------------------------------------------------------- if {[catch {read_lef $::env(MERGED_LEF_UNPADDED)} errmsg]} { puts stderr $errmsg exit 1 } if {[catch {read_def -order_wires $::env(CURRENT_DEF)} errmsg]} { puts stderr $errmsg exit 1 } read_sdc $::env(CURRENT_SDC) set_propagated_clock [all_clocks] set rcx_flags "" if { !$::env(RCX_MERGE_VIA_WIRE_RES) } { set rcx_flags "-no_merge_via_res" } ------------------------------------------------------------------------- My understanding spef generation should be independent of SDC constraints .. I don't see any difference between spef generated with SDC vs without SDC
m
I'm also curious about this
m
reading SDC has no effect on rcx
👍 1
most likely just a blind copy-paste