Skip to content

Commit ea15a81

Browse files
authored
Merge pull request #270 from hpretl/stable
Switching from `volare` to `ciel` and bumping the version number
2 parents e63f70d + 9492349 commit ea15a81

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ gf180mcuD
2929
skywater-pdk/
3030
sky130_fd_bd_sram/
3131
docker/openram-ubuntu.log
32-
volare/
32+
ciel/

Makefile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ SRAM_LIB_GIT_COMMIT ?= dd64256961317205343a3fd446908b42bafba388
1818
SKY130_PDK ?= $(PDK_ROOT)/sky130A
1919
GF180_PDK ?= $(PDK_ROOT)/gf180mcuD
2020

21-
# Volare SKY130 PDK
22-
SKY130_VOLARE = e8294524e5f67c533c5d0c3afa0bcc5b2a5fa066 # 2022.07.29
21+
# Ciel SKY130 PDK
22+
SKY130_CIEL = e8294524e5f67c533c5d0c3afa0bcc5b2a5fa066 # 2022.07.29
2323

24-
# Volare GF180 PDK
25-
GF180_VOLARE = cd1748bb197f9b7af62a54507de6624e30363943 # 2023.12.04
24+
# Ciel GF180 PDK
25+
GF180_CIEL = cd1748bb197f9b7af62a54507de6624e30363943 # 2023.12.04
2626

2727
# Skywater PDK
2828
SKY130_PDKS_DIR ?= $(PDK_ROOT)/skywater-pdk
@@ -58,7 +58,7 @@ INSTALL_BASE_DIRS := gds_lib mag_lib sp_lib lvs_lib calibre_lvs_lib klayout_lvs_
5858
INSTALL_BASE := $(OPENRAM_HOME)/../technology/sky130
5959
INSTALL_DIRS := $(addprefix $(INSTALL_BASE)/,$(INSTALL_BASE_DIRS))
6060

61-
# If conda is installed, we will use volare from there
61+
# If conda is installed, we will use ciel from there
6262
CONDA_DIR := $(wildcard $(TOP_DIR)/miniconda)
6363

6464
check-pdk-root:
@@ -102,23 +102,23 @@ sky130-install: $(SRAM_LIB_DIR)
102102
.PHONY: sky130-install
103103

104104
sky130-pdk: $(SKY130_PDKS_DIR)
105-
@echo "Installing SKY130 via volare..."
105+
@echo "Installing SKY130 via ciel..."
106106
ifeq ($(CONDA_DIR),)
107-
volare enable --pdk sky130 $(SKY130_VOLARE)
107+
ciel enable --pdk sky130 $(SKY130_CIEL)
108108
else
109109
source $(TOP_DIR)/miniconda/bin/activate && \
110-
volare enable --pdk sky130 $(SKY130_VOLARE) && \
110+
ciel enable --pdk sky130 $(SKY130_CIEL) && \
111111
conda deactivate
112112
endif
113113
.PHONY: sky130-pdk
114114

115115
gf180mcu-pdk:
116-
@echo "Installing GF180 via volare..."
116+
@echo "Installing GF180 via ciel..."
117117
ifeq ($(CONDA_DIR),)
118-
volare enable --pdk gf180mcu $(GF180_VOLARE)
118+
ciel enable --pdk gf180mcu $(GF180_CIEL)
119119
else
120120
source $(TOP_DIR)/miniconda/bin/activate && \
121-
volare enable --pdk gf180mcu $(GF180_VOLARE) && \
121+
ciel enable --pdk gf180mcu $(GF180_CIEL) && \
122122
conda deactivate
123123
endif
124124
.PHONY: gf180mcu-pdk

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.48
1+
1.2.49

docs/source/basic_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ cd $HOME/OpenRAM
122122
make sky130-pdk
123123
```
124124
125-
This will use volare to get the PDK.
125+
This will use ciel to get the PDK.
126126
127127
> **Note**: If you don't have Magic installed, you need to install and activate
128128
> the conda environment before running this command. You can run:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ scipy>=1.3.3
44
numpy>=1.17.4
55
python-subunit>=1.4.0
66
unittest2>=1.1.0
7-
volare>=0.15.2
7+
ciel>=2.0.0

0 commit comments

Comments
 (0)