Jun1OKAMURA
12/19/2022, 7:52 AM$ git clone <https://github.com/VLSIDA/OpenRAM.git>
2. Build docker tool
$ cd OpenRAM/docker
$ make build
3. export below.
$ export OPENRAM_HOME="$HOME/OpenRAM/compiler"
$ export OPENRAM_TECH="$HOME/OpenRAM/technology"
$ export PYTHONPATH="$OPENRAM_HOME:$OPENRAM_TECH/sky130:$OPENRAM_TECH/sky130/custom"
4. edit myconfig.py as following
# Data word size
word_size = 8
# Number of words in the memory
num_words = 128
num_rw_port = 2 # In case "1" generate ERROR
tech_name = "sky130"
nominal_corner_only = True
output_path = "temp"
output_name = "sram_{0}_{1}_{2}".format(word_size,num_words,tech_name)
5. Compile it
$ cd OpenRAM
$ make pdk
$ make install
$ python3 $OPENRAM_HOME/openram.py myconfig
6. Stucked with attached ERROR.Mitch Bailey
12/19/2022, 8:14 AMRolf Widenfelt
12/19/2022, 8:38 AMJun1OKAMURA
12/19/2022, 8:42 AM