Wajeh ul hasan
11/20/2020, 11:09 AMCell sky130_fd_sc_hd__o22a_4 couldn't be read
DEF read, Line 159 (Error): Cell sky130_fd_sc_hd__o22a_4 is not defined. Maybe you have not read the corresponding LEF file?
Cell sky130_fd_sc_hd__a2bb2o_4 couldn't be read
DEF read, Line 160 (Error): Cell sky130_fd_sc_hd__a2bb2o_4 is not defined. Maybe you have not read the corresponding LEF file?
Cell sky130_fd_sc_hd__xor2_4 couldn't be read
DEF read, Line 161 (Error): Cell sky130_fd_sc_hd__xor2_4 is not defined. Maybe you have not read the corresponding LEF file?
Cell sky130_fd_sc_hd__inv_8 couldn't be read
DEF read, Line 162 (Error): Cell sky130_fd_sc_hd__inv_8 is not defined. Maybe you have not read the corresponding LEF file?
Cell sky130_fd_sc_hd__inv_8 couldn't be read
DEF read, Line 163 (Error): Cell sky130_fd_sc_hd__inv_8 is not defined. Maybe you have not read the corresponding LEF file?
Cell sky130_fd_sc_hd__and2_4 couldn't be read
DEF read, Line 164 (Error): Cell sky130_fd_sc_hd__and2_4 is not defined. Maybe you have not read the corresponding LEF file?
And the list goes on..
Which LEF is it referring to?
The merged.lef
has these cells included in it.
I get the same message when I ran spm
design as well.scripts/magic.drc.tcl
The scripts reads:
lef read $::env(TECH_LEF)
#load $::env(magic_result_file_tag).mag
if { [info exist ::env(EXTRA_LEFS)] } {
set lefs_in $::env(EXTRA_LEFS)
foreach lef_file $lefs_in {
lef read $lef_file
}
Now the lef file it is reading is techlef/sky130_fd_sc_hd.tlef
which does not contain information of the cells. Rather it is lef/sky130_fd_sc_hd.lef
which contaiins the cell information.
Is that the reason of the error?Amr Gouhar
11/20/2020, 3:07 PM