vks
07/28/2023, 11:14 AMKLAYOUT_HOME=$PDK_ROOT/$PDK/libs.tech/klayout klayout -e
to invoke klayout with sky130 pdk. But only layer nos. are visible on layers pallete and not names. Need to manually import .lyp
file everytime in order to see layer names inside klayout. Can you suggest solution to this issue.Mitch Bailey
08/02/2023, 2:18 AMFile
->`Log Viewer`
Every time I opened a gds file I see the message
Initialization of layers failed: Unable to open file: /$HOME/.klayout/tech/sky130/sky130.lyp (errno=2)
Linking the lyp
file from the pdk to that location seems to work.
mkdir -p $HOME/.klayout/tech/sky130
cd $HOME/.layout/tech/sky130
ln -s $PDK_ROOT/$PDK/libs.tech/klayout/tech/sky130A.lyp sky130.lyp
David Lindley
06/13/2024, 6:08 PM