Closed visionvlsi closed 2 years ago
@proppy said the following on the gf180mcu-pdk-users mailing list;
You should be able to use OpenLane with GF180MCU by setting the following environment variables:
export PDK_FAMILY=gf180mcu # set environment variable for volare export PDK=gf180mcuC # set environment variable for the rest of the toolchain
prior to following OpenLane installation instructions: https://github.com/The-OpenROAD-Project/OpenLane#installation-the-short-version
See also https://caravel-user-project.readthedocs.io/en/latest/ for instructions on how to set up the caravel_user_project environment to submit a project to the recently announced GF-MPW0 Open MPW shuttle: https://opensource.googleblog.com/2022/10/announcing-globalfoundries-open-mpw-shuttle-program.html
I had tried what you had said
export PDK_FAMILY=gf180mcu # set environment variable for volare export PDK=gf180mcuC # set environment variable for the rest of the toolchain
and then I tried, make mount as been said here to run openlane
https://github.com/efabless/openlane#running-openlane
But, it is still taking sky130 pdk.
Please help.
@visionvlsi Can you provide path where you installed gf180 PDK? Using in caravel flow or directly in OpenLane flow?
Use following command before running design:
export PDK_ROOT=<path to gf180 PDK>
export PDK=gf180mcuC
I had tried what you had said export PDK_FAMILY=gf180mcu # set environment variable for volare export PDK=gf180mcuC # set environment variable for the rest of the toolchain
did you run make
and make test
, before make mount
. This will ensure the environment (including the PDK) is set appropriatly as documented in https://github.com/The-OpenROAD-Project/OpenLane#installation-the-short-version.
I had tried what you had said export PDK_FAMILY=gf180mcu # set environment variable for volare export PDK=gf180mcuC # set environment variable for the rest of the toolchain
did you run
make
andmake test
, beforemake mount
. This will ensure the environment (including the PDK) is set appropriatly as documented in https://github.com/The-OpenROAD-Project/OpenLane#installation-the-short-version.
Let me present what I had done :
https://github.com/google/gf180mcu-pdk#building-the-documentation
i. export PDK_FAMILY=gf180mcu ii. export PDK=gf180mcuC [ Here I had tried with path as well like export PDK=<path where I had Installed gf180 by following step 1] iii. Then I did make mount
Did you try to run:
make
make test
After setting the environment variables and before running make mount
?
Yes I did that. Let me clearly explain what am I doing
Firstly I am installing gf180 by following instructions given at the following link
https://github.com/google/gf180mcu-pdk#building-the-documentation
and then doing the following
After the 5th step what I notice is
Found version 41c0908b47130d5675ff84 common.py:230
84255b43f66463a7d6 in
./dependencies/tool_metadata.yml.
Version 41c0908b47130d5675ff8484255b43f66463a7d6 enabled for
the sky130 PDK.
@visionvlsi You're cloning wrong repo cause for the setup failure. Follow below steps:
@vijayank88
Thank you for correcting me. You are right, I was cloning the wrong repository. But one thing, after doing the following two steps mentioned by you
From step number 3 onwards I have to do those commands as root user then only everything is working fine. If done as a normal user then it is not working!!!
Is that how it works?
Is that how it works?
Yes and with those instructions you should need to build the PDK separately like you commented earlier. It gets installed as part of the OpenLane make execution.
How to use gf180mcu-pdk into openlane flow?