mirror of https://github.com/VLSIDA/OpenRAM.git
Compare commits
99 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
ea15a81443 | |
|
|
9492349d7a | |
|
|
01686a2005 | |
|
|
e63f70da5e | |
|
|
8104a42f0e | |
|
|
bc1cc36ade | |
|
|
3184e1d0e4 | |
|
|
7ec407314a | |
|
|
1f5fe62456 | |
|
|
3f1f58065d | |
|
|
0937f86761 | |
|
|
85e242fa27 | |
|
|
b6a6f12642 | |
|
|
306da8a895 | |
|
|
0cf60a6a18 | |
|
|
55e5c425e9 | |
|
|
14c219d9f1 | |
|
|
855139bc4e | |
|
|
0423f10926 | |
|
|
156eb4f0f7 | |
|
|
18b19b8d9d | |
|
|
5081cf2383 | |
|
|
84020f13c6 | |
|
|
0861ea5632 | |
|
|
daa6286a3a | |
|
|
e7dbf7443e | |
|
|
0a1de57cae | |
|
|
fc37bf6859 | |
|
|
8032fa75a4 | |
|
|
05884cf6a7 | |
|
|
9d6052b86c | |
|
|
caa9b2a2d8 | |
|
|
e35f060d32 | |
|
|
efd43c3191 | |
|
|
7531e38cad | |
|
|
39a66fcb87 | |
|
|
6cfb22959c | |
|
|
02810a0740 | |
|
|
e73ff401fb | |
|
|
6bd437cfa8 | |
|
|
d59a60eaf3 | |
|
|
b9570b8ddf | |
|
|
6e2dadeff5 | |
|
|
fc1a9a9a2b | |
|
|
ce1861f342 | |
|
|
d161cc55a5 | |
|
|
a45e16bff5 | |
|
|
26068fd2e1 | |
|
|
b453aa23c2 | |
|
|
5378a308c1 | |
|
|
bd9ebc3300 | |
|
|
561e0c228c | |
|
|
4b4153bdea | |
|
|
98a4210b06 | |
|
|
042bfcabea | |
|
|
b65ebc6160 | |
|
|
1f35855c6d | |
|
|
9b99e6c124 | |
|
|
ddba3b3718 | |
|
|
5c22e382b5 | |
|
|
4b3af38727 | |
|
|
565e3f6814 | |
|
|
3271c5e73c | |
|
|
75f7a5847f | |
|
|
b279791762 | |
|
|
a544abebf7 | |
|
|
20d0df2947 | |
|
|
cb8567c66f | |
|
|
d940c0e03d | |
|
|
23611f8fac | |
|
|
e3b51360f3 | |
|
|
ea703d124f | |
|
|
07fa78e00c | |
|
|
dba75fc57c | |
|
|
9ac94d1744 | |
|
|
0aa9c47f89 | |
|
|
8ac30f4ef5 | |
|
|
416140d04a | |
|
|
8c56478df3 | |
|
|
13459cb6dd | |
|
|
88782b0a58 | |
|
|
4bb586c949 | |
|
|
d6cb15c82d | |
|
|
0040efb86f | |
|
|
b0a0226e87 | |
|
|
1255a81487 | |
|
|
c09a981734 | |
|
|
698020301c | |
|
|
7ce11eba52 | |
|
|
b9fd172e44 | |
|
|
de7a248ff0 | |
|
|
81b62ab13b | |
|
|
8a5b0b4898 | |
|
|
a904874978 | |
|
|
d18a4f8c7c | |
|
|
a18d62c430 | |
|
|
06058e1b87 | |
|
|
decfd7ff4f | |
|
|
788d7e5474 |
|
|
@ -12,6 +12,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
pip3 install -r requirements.txt
|
||||||
- name: Library build
|
- name: Library build
|
||||||
run: |
|
run: |
|
||||||
rm -rf ~/.local/lib/python3.8/site-packages/openram*
|
rm -rf ~/.local/lib/python3.8/site-packages/openram*
|
||||||
|
|
@ -24,8 +27,9 @@ jobs:
|
||||||
export OPENRAM_HOME="${{ github.workspace }}/compiler"
|
export OPENRAM_HOME="${{ github.workspace }}/compiler"
|
||||||
export OPENRAM_TECH="${{ github.workspace }}/technology"
|
export OPENRAM_TECH="${{ github.workspace }}/technology"
|
||||||
export PDK_ROOT="${{ github.workspace }}/pdk"
|
export PDK_ROOT="${{ github.workspace }}/pdk"
|
||||||
make pdk
|
# Add make targets to install PDKs of all technologies that need it
|
||||||
make install
|
make sky130-pdk
|
||||||
|
make sky130-install
|
||||||
- name: Regress
|
- name: Regress
|
||||||
run: |
|
run: |
|
||||||
export OPENRAM_HOME="${{ github.workspace }}/compiler"
|
export OPENRAM_HOME="${{ github.workspace }}/compiler"
|
||||||
|
|
@ -43,7 +47,7 @@ jobs:
|
||||||
make -k -j 48
|
make -k -j 48
|
||||||
- name: Archive
|
- name: Archive
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Regress Archives
|
name: Regress Archives
|
||||||
path: ${{ github.workspace }}/compiler/tests/results/*
|
path: ${{ github.workspace }}/compiler/tests/results/*
|
||||||
|
|
|
||||||
|
|
@ -13,14 +13,20 @@ outputs
|
||||||
technology/freepdk45/ncsu_basekit
|
technology/freepdk45/ncsu_basekit
|
||||||
technology/sky130/*_lib
|
technology/sky130/*_lib
|
||||||
technology/sky130/tech/.magicrc
|
technology/sky130/tech/.magicrc
|
||||||
|
technology/gf180mcu/*_lib
|
||||||
.idea
|
.idea
|
||||||
compiler/tests/results/
|
compiler/tests/results/
|
||||||
open_pdks/
|
open_pdks/
|
||||||
dist/
|
dist/
|
||||||
openram.egg-info/
|
openram.egg-info/
|
||||||
miniconda/
|
miniconda/
|
||||||
sky130A/
|
sky130A
|
||||||
sky130B/
|
sky130B
|
||||||
|
gf180mcuA
|
||||||
|
gf180mcuB
|
||||||
|
gf180mcuC
|
||||||
|
gf180mcuD
|
||||||
skywater-pdk/
|
skywater-pdk/
|
||||||
sky130_fd_bd_sram/
|
sky130_fd_bd_sram/
|
||||||
docker/openram-ubuntu.log
|
docker/openram-ubuntu.log
|
||||||
|
ciel/
|
||||||
|
|
|
||||||
87
Makefile
87
Makefile
|
|
@ -13,20 +13,27 @@ SRAM_LIB_GIT_REPO ?= https://github.com/vlsida/sky130_fd_bd_sram.git
|
||||||
# Use this for development
|
# Use this for development
|
||||||
#SRAM_LIB_GIT_REPO ?= git@github.com:VLSIDA/sky130_fd_bd_sram.git
|
#SRAM_LIB_GIT_REPO ?= git@github.com:VLSIDA/sky130_fd_bd_sram.git
|
||||||
#SRAM_LIB_GIT_REPO ?= https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git
|
#SRAM_LIB_GIT_REPO ?= https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git
|
||||||
SRAM_LIB_GIT_COMMIT ?= 9fcf3a78398037583b6d6c1ebac71957343c4bd8
|
SRAM_LIB_GIT_COMMIT ?= dd64256961317205343a3fd446908b42bafba388
|
||||||
|
|
||||||
# Open PDKs
|
|
||||||
OPEN_PDKS_DIR ?= $(PDK_ROOT)/open_pdks
|
|
||||||
OPEN_PDKS_GIT_REPO ?= https://github.com/RTimothyEdwards/open_pdks.git
|
|
||||||
OPEN_PDKS_GIT_COMMIT ?= 1.0.311
|
|
||||||
#OPEN_PDKS_GIT_COMMIT ?= 7ea416610339d3c29af9d0d748ceadd3fd368608
|
|
||||||
SKY130_PDK ?= $(PDK_ROOT)/sky130A
|
SKY130_PDK ?= $(PDK_ROOT)/sky130A
|
||||||
|
GF180_PDK ?= $(PDK_ROOT)/gf180mcuD
|
||||||
|
|
||||||
|
# Ciel SKY130 PDK
|
||||||
|
SKY130_CIEL = e8294524e5f67c533c5d0c3afa0bcc5b2a5fa066 # 2022.07.29
|
||||||
|
|
||||||
|
# Ciel GF180 PDK
|
||||||
|
GF180_CIEL = cd1748bb197f9b7af62a54507de6624e30363943 # 2023.12.04
|
||||||
|
|
||||||
# Skywater PDK
|
# Skywater PDK
|
||||||
SKY130_PDKS_DIR ?= $(PDK_ROOT)/skywater-pdk
|
SKY130_PDKS_DIR ?= $(PDK_ROOT)/skywater-pdk
|
||||||
SKY130_PDKS_GIT_REPO ?= https://github.com/google/skywater-pdk.git
|
SKY130_PDKS_GIT_REPO ?= https://github.com/google/skywater-pdk.git
|
||||||
SKY130_PDKS_GIT_COMMIT ?= f70d8ca46961ff92719d8870a18a076370b85f6c
|
SKY130_PDKS_GIT_COMMIT ?= f70d8ca46961ff92719d8870a18a076370b85f6c
|
||||||
|
|
||||||
|
# GF180 PDK
|
||||||
|
GF180_PDKS_DIR ?= $(PDK_ROOT)/gf180mcu-pdk
|
||||||
|
GF180_PDKS_GIT_REPO ?= https://github.com/google/gf180mcu-pdk.git
|
||||||
|
GF180_PDKS_GIT_COMMIT ?= main
|
||||||
|
|
||||||
# Create lists of all the files to copy/link
|
# Create lists of all the files to copy/link
|
||||||
GDS_FILES := $(sort $(wildcard $(SRAM_LIB_DIR)/cells/*/*.gds))
|
GDS_FILES := $(sort $(wildcard $(SRAM_LIB_DIR)/cells/*/*.gds))
|
||||||
GDS_FILES := $(GDS_FILES) $(PDK_ROOT)/skywater-pdk/libraries/sky130_fd_sc_hd/latest/cells/dlxtn/sky130_fd_sc_hd__dlxtn_1.gds
|
GDS_FILES := $(GDS_FILES) $(PDK_ROOT)/skywater-pdk/libraries/sky130_fd_sc_hd/latest/cells/dlxtn/sky130_fd_sc_hd__dlxtn_1.gds
|
||||||
|
|
@ -47,12 +54,11 @@ MAGICRC_FILE := $(SKY130_PDK)/libs.tech/magic/sky130A.magicrc
|
||||||
|
|
||||||
ALL_FILES := $(ALL_SPICE_FILES) $(GDS_FILES) $(MAG_FILES) $(MAGLEF_FILES)
|
ALL_FILES := $(ALL_SPICE_FILES) $(GDS_FILES) $(MAG_FILES) $(MAGLEF_FILES)
|
||||||
|
|
||||||
|
|
||||||
INSTALL_BASE_DIRS := gds_lib mag_lib sp_lib lvs_lib calibre_lvs_lib klayout_lvs_lib maglef_lib
|
INSTALL_BASE_DIRS := gds_lib mag_lib sp_lib lvs_lib calibre_lvs_lib klayout_lvs_lib maglef_lib
|
||||||
INSTALL_BASE := $(OPENRAM_HOME)/../technology/sky130
|
INSTALL_BASE := $(OPENRAM_HOME)/../technology/sky130
|
||||||
INSTALL_DIRS := $(addprefix $(INSTALL_BASE)/,$(INSTALL_BASE_DIRS))
|
INSTALL_DIRS := $(addprefix $(INSTALL_BASE)/,$(INSTALL_BASE_DIRS))
|
||||||
|
|
||||||
# If conda is installed, we will use Magic from there
|
# If conda is installed, we will use ciel from there
|
||||||
CONDA_DIR := $(wildcard $(TOP_DIR)/miniconda)
|
CONDA_DIR := $(wildcard $(TOP_DIR)/miniconda)
|
||||||
|
|
||||||
check-pdk-root:
|
check-pdk-root:
|
||||||
|
|
@ -67,31 +73,14 @@ $(SKY130_PDKS_DIR): check-pdk-root
|
||||||
@git -C $(SKY130_PDKS_DIR) checkout $(SKY130_PDKS_GIT_COMMIT) && \
|
@git -C $(SKY130_PDKS_DIR) checkout $(SKY130_PDKS_GIT_COMMIT) && \
|
||||||
git -C $(SKY130_PDKS_DIR) submodule update --init libraries/sky130_fd_pr/latest libraries/sky130_fd_sc_hd/latest
|
git -C $(SKY130_PDKS_DIR) submodule update --init libraries/sky130_fd_pr/latest libraries/sky130_fd_sc_hd/latest
|
||||||
|
|
||||||
$(OPEN_PDKS_DIR): $(SKY130_PDKS_DIR)
|
$(GF180_PDKS_DIR): check-pdk-root
|
||||||
@echo "Cloning open_pdks..."
|
@echo "Cloning gf PDK..."
|
||||||
@[ -d $(OPEN_PDKS_DIR) ] || \
|
@[ -d $(PDK_ROOT)/gf180mcu-pdk ] || \
|
||||||
git clone $(OPEN_PDKS_GIT_REPO) $(OPEN_PDKS_DIR)
|
git clone https://github.com/google/gf180mcu-pdk.git $(PDK_ROOT)/gf180mcu-pdk
|
||||||
@git -C $(OPEN_PDKS_DIR) checkout $(OPEN_PDKS_GIT_COMMIT)
|
@cd $(GF180_PDKS_DIR) && \
|
||||||
|
git checkout main && git pull && \
|
||||||
$(SKY130_PDK): $(OPEN_PDKS_DIR) $(SKY130_PDKS_DIR)
|
git checkout -qf $(GF180_PDKS_GIT_COMMIT) && \
|
||||||
@echo "Installing open_pdks..."
|
git submodule update --init libraries/gf180mcu_fd_pr/latest libraries/gf180mcu_fd_sc_mcu7t5v0/latest libraries/gf180mcu_fd_sc_mcu9t5v0/latest
|
||||||
ifeq ($(CONDA_DIR),"")
|
|
||||||
@cd $(PDK_ROOT)/open_pdks && \
|
|
||||||
./configure --enable-sky130-pdk=$(PDK_ROOT)/skywater-pdk/libraries --with-sky130-local-path=$(PDK_ROOT) && \
|
|
||||||
cd sky130 && \
|
|
||||||
make veryclean && \
|
|
||||||
make && \
|
|
||||||
make SHARED_PDKS_PATH=$(PDK_ROOT) install
|
|
||||||
else
|
|
||||||
@source $(TOP_DIR)/miniconda/bin/activate && \
|
|
||||||
cd $(PDK_ROOT)/open_pdks && \
|
|
||||||
./configure --enable-sky130-pdk=$(PDK_ROOT)/skywater-pdk/libraries --with-sky130-local-path=$(PDK_ROOT) && \
|
|
||||||
cd sky130 && \
|
|
||||||
make veryclean && \
|
|
||||||
make && \
|
|
||||||
make SHARED_PDKS_PATH=$(PDK_ROOT) install && \
|
|
||||||
conda deactivate
|
|
||||||
endif
|
|
||||||
|
|
||||||
$(SRAM_LIB_DIR): check-pdk-root
|
$(SRAM_LIB_DIR): check-pdk-root
|
||||||
@echo "Cloning SRAM library..."
|
@echo "Cloning SRAM library..."
|
||||||
|
|
@ -100,21 +89,39 @@ $(SRAM_LIB_DIR): check-pdk-root
|
||||||
@git -C $(SRAM_LIB_DIR) fetch
|
@git -C $(SRAM_LIB_DIR) fetch
|
||||||
@git -C $(SRAM_LIB_DIR) checkout $(SRAM_LIB_GIT_COMMIT)
|
@git -C $(SRAM_LIB_DIR) checkout $(SRAM_LIB_GIT_COMMIT)
|
||||||
|
|
||||||
install: $(SRAM_LIB_DIR)
|
sky130-install: $(SRAM_LIB_DIR)
|
||||||
@[ -d $(PDK_ROOT)/sky130A ] || \
|
@[ -d $(PDK_ROOT)/sky130A ] || \
|
||||||
(echo "Warning: $(PDK_ROOT)/sky130A not found!! Run make pdk first." && false)
|
(echo "Warning: $(PDK_ROOT)/sky130A not found!! Run make sky130-pdk first." && false)
|
||||||
@[ -d $(PDK_ROOT)/skywater-pdk ] || \
|
@[ -d $(PDK_ROOT)/skywater-pdk ] || \
|
||||||
(echo "Warning: $(PDK_ROOT)/skywater-pdk not found!! Run make pdk first." && false)
|
(echo "Warning: $(PDK_ROOT)/skywater-pdk not found!! Run make sky130-pdk first." && false)
|
||||||
@echo "Installing sky130 SRAM PDK..."
|
@echo "Installing sky130 SRAM PDK..."
|
||||||
@echo "PDK_ROOT='$(PDK_ROOT)'"
|
@echo "PDK_ROOT='$(PDK_ROOT)'"
|
||||||
@echo "SRAM_LIB_DIR='$(SRAM_LIB_DIR)'"
|
@echo "SRAM_LIB_DIR='$(SRAM_LIB_DIR)'"
|
||||||
@echo "SKY130_PDK='$(SKY130_PDK)'"
|
@echo "SKY130_PDK='$(SKY130_PDK)'"
|
||||||
@make $(INSTALL_DIRS)
|
@make $(INSTALL_DIRS)
|
||||||
.PHONY: install
|
.PHONY: sky130-install
|
||||||
|
|
||||||
pdk: $(SKY130_PDK)
|
sky130-pdk: $(SKY130_PDKS_DIR)
|
||||||
@true
|
@echo "Installing SKY130 via ciel..."
|
||||||
.PHONY: pdk
|
ifeq ($(CONDA_DIR),)
|
||||||
|
ciel enable --pdk sky130 $(SKY130_CIEL)
|
||||||
|
else
|
||||||
|
source $(TOP_DIR)/miniconda/bin/activate && \
|
||||||
|
ciel enable --pdk sky130 $(SKY130_CIEL) && \
|
||||||
|
conda deactivate
|
||||||
|
endif
|
||||||
|
.PHONY: sky130-pdk
|
||||||
|
|
||||||
|
gf180mcu-pdk:
|
||||||
|
@echo "Installing GF180 via ciel..."
|
||||||
|
ifeq ($(CONDA_DIR),)
|
||||||
|
ciel enable --pdk gf180mcu $(GF180_CIEL)
|
||||||
|
else
|
||||||
|
source $(TOP_DIR)/miniconda/bin/activate && \
|
||||||
|
ciel enable --pdk gf180mcu $(GF180_CIEL) && \
|
||||||
|
conda deactivate
|
||||||
|
endif
|
||||||
|
.PHONY: gf180mcu-pdk
|
||||||
|
|
||||||
$(INSTALL_BASE)/gds_lib: $(GDS_FILES)
|
$(INSTALL_BASE)/gds_lib: $(GDS_FILES)
|
||||||
@echo
|
@echo
|
||||||
|
|
|
||||||
13
README.md
13
README.md
|
|
@ -42,10 +42,6 @@ updating.
|
||||||
# Further Help
|
# Further Help
|
||||||
|
|
||||||
+ [Documentation][documentation]
|
+ [Documentation][documentation]
|
||||||
+ [OpenRAM Slack Workspace][Slack]
|
|
||||||
+ [OpenRAM Users Group][user-group] ([subscribe here][user-group-subscribe])
|
|
||||||
+ [OpenRAM Developers Group][dev-group] ([subscribe here][dev-group-subscribe])
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
@ -71,13 +67,13 @@ OpenRAM is licensed under the [BSD 3-Clause License](./LICENSE).
|
||||||
|
|
||||||
- [Matthew Guthaus] from [VLSIDA] created the OpenRAM project and is the lead architect.
|
- [Matthew Guthaus] from [VLSIDA] created the OpenRAM project and is the lead architect.
|
||||||
- [James Stine] from [VLSIARCH] co-founded the project.
|
- [James Stine] from [VLSIARCH] co-founded the project.
|
||||||
- Many students: Hunter Nichols, Michael Grimes, Jennifer Sowash, Yusu Wang, Joey Kunzler, Jesse Cirimelli-Low, Samira Ataei, Bin Wu, Brian Chen, Jeff Butera
|
- Many students: Hunter Nichols, Michael Grimes, Jennifer Sowash, Yusu Wang, Joey Kunzler, Jesse Cirimelli-Low, Samira Ataei, Bin Wu, Brian Chen, Jeff Butera, Sage Walker
|
||||||
|
|
||||||
If I forgot to add you, please let me know!
|
If I forgot to add you, please let me know!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Matthew Guthaus]: https://users.soe.ucsc.edu/~mrg
|
[Matthew Guthaus]: https://vlsida.github.io
|
||||||
[James Stine]: https://ece.okstate.edu/content/stine-james-e-jr-phd
|
[James Stine]: https://ece.okstate.edu/content/stine-james-e-jr-phd
|
||||||
[VLSIDA]: https://vlsida.soe.ucsc.edu
|
[VLSIDA]: https://vlsida.soe.ucsc.edu
|
||||||
[VLSIARCH]: https://vlsiarch.ecen.okstate.edu/
|
[VLSIARCH]: https://vlsiarch.ecen.okstate.edu/
|
||||||
|
|
@ -88,10 +84,6 @@ If I forgot to add you, please let me know!
|
||||||
[Github project]: https://github.com/VLSIDA/OpenRAM
|
[Github project]: https://github.com/VLSIDA/OpenRAM
|
||||||
|
|
||||||
[documentation]: docs/source/index.md
|
[documentation]: docs/source/index.md
|
||||||
[dev-group]: mailto:openram-dev-group@ucsc.edu
|
|
||||||
[user-group]: mailto:openram-user-group@ucsc.edu
|
|
||||||
[dev-group-subscribe]: mailto:openram-dev-group+subscribe@ucsc.edu
|
|
||||||
[user-group-subscribe]: mailto:openram-user-group+subscribe@ucsc.edu
|
|
||||||
|
|
||||||
[Klayout]: https://www.klayout.de/
|
[Klayout]: https://www.klayout.de/
|
||||||
[Magic]: http://opencircuitdesign.com/magic/
|
[Magic]: http://opencircuitdesign.com/magic/
|
||||||
|
|
@ -105,6 +97,5 @@ If I forgot to add you, please let me know!
|
||||||
[SCMOS]: https://www.mosis.com/files/scmos/scmos.pdf
|
[SCMOS]: https://www.mosis.com/files/scmos/scmos.pdf
|
||||||
[Sky130]: https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git
|
[Sky130]: https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git
|
||||||
|
|
||||||
[Slack]: https://join.slack.com/t/openram/shared_invite/zt-onim74ue-zlttW5XI30xvdBlJGJF6JA
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
# Attempt to add the source code to the PYTHONPATH here before running globals.init_openram()
|
# Attempt to add the source code to the PYTHONPATH here before running globals.init_openram()
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .channel_route import *
|
from .channel_route import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
@ -10,7 +10,7 @@ from openram.tech import drc, layer, preferred_directions
|
||||||
from openram.tech import layer as tech_layers
|
from openram.tech import layer as tech_layers
|
||||||
from .hierarchy_design import hierarchy_design
|
from .hierarchy_design import hierarchy_design
|
||||||
from .vector import vector
|
from .vector import vector
|
||||||
|
from .utils import ceil
|
||||||
|
|
||||||
class contact(hierarchy_design):
|
class contact(hierarchy_design):
|
||||||
"""
|
"""
|
||||||
|
|
@ -41,7 +41,7 @@ class contact(hierarchy_design):
|
||||||
self.add_comment("implant type: {}\n".format(implant_type))
|
self.add_comment("implant type: {}\n".format(implant_type))
|
||||||
self.add_comment("well_type: {}\n".format(well_type))
|
self.add_comment("well_type: {}\n".format(well_type))
|
||||||
|
|
||||||
self.is_well_contact = implant_type == well_type
|
self.is_well_contact = (implant_type == well_type) and implant_type is not None
|
||||||
|
|
||||||
# If we have a special tap layer, use it
|
# If we have a special tap layer, use it
|
||||||
self.layer_stack = layer_stack
|
self.layer_stack = layer_stack
|
||||||
|
|
@ -125,6 +125,8 @@ class contact(hierarchy_design):
|
||||||
|
|
||||||
self.first_layer_minwidth = drc("minwidth_{0}".format(self.first_layer_name))
|
self.first_layer_minwidth = drc("minwidth_{0}".format(self.first_layer_name))
|
||||||
self.first_layer_enclosure = drc("{0}_enclose_{1}".format(self.first_layer_name, self.via_layer_name))
|
self.first_layer_enclosure = drc("{0}_enclose_{1}".format(self.first_layer_name, self.via_layer_name))
|
||||||
|
self.first_layer_minarea = drc("minarea_{0}".format(self.first_layer_name))
|
||||||
|
|
||||||
# If there's a different rule for active
|
# If there's a different rule for active
|
||||||
# FIXME: Make this more elegant
|
# FIXME: Make this more elegant
|
||||||
if self.is_well_contact and self.first_layer_name == "active" and "tap_extend_contact" in drc.keys():
|
if self.is_well_contact and self.first_layer_name == "active" and "tap_extend_contact" in drc.keys():
|
||||||
|
|
@ -135,7 +137,7 @@ class contact(hierarchy_design):
|
||||||
self.second_layer_minwidth = drc("minwidth_{0}".format(self.second_layer_name))
|
self.second_layer_minwidth = drc("minwidth_{0}".format(self.second_layer_name))
|
||||||
self.second_layer_enclosure = drc("{0}_enclose_{1}".format(self.second_layer_name, self.via_layer_name))
|
self.second_layer_enclosure = drc("{0}_enclose_{1}".format(self.second_layer_name, self.via_layer_name))
|
||||||
self.second_layer_extend = drc("{0}_extend_{1}".format(self.second_layer_name, self.via_layer_name))
|
self.second_layer_extend = drc("{0}_extend_{1}".format(self.second_layer_name, self.via_layer_name))
|
||||||
|
self.second_layer_minarea = drc("minarea_{0}".format(self.second_layer_name))
|
||||||
# In some technologies, the minimum width may be larger
|
# In some technologies, the minimum width may be larger
|
||||||
# than the overlap requirement around the via, so
|
# than the overlap requirement around the via, so
|
||||||
# check this for each dimension.
|
# check this for each dimension.
|
||||||
|
|
@ -166,7 +168,7 @@ class contact(hierarchy_design):
|
||||||
self.second_layer_vertical_enclosure = max(self.second_layer_enclosure,
|
self.second_layer_vertical_enclosure = max(self.second_layer_enclosure,
|
||||||
(self.second_layer_minwidth - self.contact_array_width) / 2)
|
(self.second_layer_minwidth - self.contact_array_width) / 2)
|
||||||
else:
|
else:
|
||||||
debug.error("Invalid secon layer direction: ".format(self.directions[1]), -1)
|
debug.error("Invalid second layer direction: ".format(self.directions[1]), -1)
|
||||||
|
|
||||||
def create_contact_array(self):
|
def create_contact_array(self):
|
||||||
""" Create the contact array at the origin"""
|
""" Create the contact array at the origin"""
|
||||||
|
|
@ -221,6 +223,18 @@ class contact(hierarchy_design):
|
||||||
first_layer_name = "tap"
|
first_layer_name = "tap"
|
||||||
else:
|
else:
|
||||||
first_layer_name = self.first_layer_name
|
first_layer_name = self.first_layer_name
|
||||||
|
|
||||||
|
area = self.first_layer_width * self.first_layer_height
|
||||||
|
if area < self.first_layer_minarea and self.is_well_contact:
|
||||||
|
if self.directions[0] == "V":
|
||||||
|
area_extend = (self.first_layer_minarea / self.first_layer_width) - self.first_layer_height
|
||||||
|
self.first_layer_height = ceil(self.first_layer_height + area_extend)
|
||||||
|
self.first_layer_position = self.first_layer_position - vector(0, area_extend / 2)
|
||||||
|
elif self.directions[0] == "H":
|
||||||
|
area_extend = (self.first_layer_minarea / self.first_layer_height) - self.first_layer_width
|
||||||
|
self.first_layer_width = ceil(self.first_layer_height + area_extend)
|
||||||
|
self.first_layer_position = self.first_layer_position - vector(area_extend / 2, 0)
|
||||||
|
|
||||||
self.add_rect(layer=first_layer_name,
|
self.add_rect(layer=first_layer_name,
|
||||||
offset=self.first_layer_position,
|
offset=self.first_layer_position,
|
||||||
width=self.first_layer_width,
|
width=self.first_layer_width,
|
||||||
|
|
@ -236,6 +250,7 @@ class contact(hierarchy_design):
|
||||||
self.second_layer_minwidth)
|
self.second_layer_minwidth)
|
||||||
self.second_layer_height = max(self.contact_array_height + 2 * self.second_layer_vertical_enclosure,
|
self.second_layer_height = max(self.contact_array_height + 2 * self.second_layer_vertical_enclosure,
|
||||||
self.second_layer_minwidth)
|
self.second_layer_minwidth)
|
||||||
|
|
||||||
self.add_rect(layer=self.second_layer_name,
|
self.add_rect(layer=self.second_layer_name,
|
||||||
offset=self.second_layer_position,
|
offset=self.second_layer_position,
|
||||||
width=self.second_layer_width,
|
width=self.second_layer_width,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
@ -22,7 +22,7 @@ from openram.sram_factory import factory
|
||||||
from openram import OPTS
|
from openram import OPTS
|
||||||
from .vector import vector
|
from .vector import vector
|
||||||
from .pin_layout import pin_layout
|
from .pin_layout import pin_layout
|
||||||
from .utils import round_to_grid
|
from .utils import round_to_grid, ceil
|
||||||
from . import geometry
|
from . import geometry
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
@ -187,7 +187,7 @@ class layout():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Skip computing the pitch for non-routing layers
|
# Skip computing the pitch for non-routing layers
|
||||||
if layer_id in ["active", "nwell"]:
|
if layer_id in ["active", "nwell", "pwell"]:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Add the pitch
|
# Add the pitch
|
||||||
|
|
@ -259,8 +259,7 @@ class layout():
|
||||||
contact_width = contact1.first_layer_width
|
contact_width = contact1.first_layer_width
|
||||||
layer_space = getattr(layout, layer1 + "_space")
|
layer_space = getattr(layout, layer1 + "_space")
|
||||||
|
|
||||||
#print(layer_stack)
|
|
||||||
#print(contact1)
|
|
||||||
pitch = contact_width + layer_space
|
pitch = contact_width + layer_space
|
||||||
|
|
||||||
return round_to_grid(pitch)
|
return round_to_grid(pitch)
|
||||||
|
|
@ -838,8 +837,7 @@ class layout():
|
||||||
|
|
||||||
from_id = tech_layer_indices[from_layer]
|
from_id = tech_layer_indices[from_layer]
|
||||||
to_id = tech_layer_indices[to_layer]
|
to_id = tech_layer_indices[to_layer]
|
||||||
|
layer_list = [x for x in tech_layer_indices.keys() if tech_layer_indices[x] > from_id and tech_layer_indices[x] < to_id]
|
||||||
layer_list = [x for x in tech_layer_indices.keys() if tech_layer_indices[x] >= from_id and tech_layer_indices[x] < to_id]
|
|
||||||
|
|
||||||
return layer_list
|
return layer_list
|
||||||
|
|
||||||
|
|
@ -944,14 +942,19 @@ class layout():
|
||||||
|
|
||||||
return (bot_rect, top_rect)
|
return (bot_rect, top_rect)
|
||||||
|
|
||||||
def route_horizontal_pins(self, name, insts=None, layer=None, xside="cx", yside="cy", full_width=True):
|
def route_horizontal_pins(self, name, insts=None, layer=None, xside="cx", yside="cy", full_width=True, new_name=None):
|
||||||
"""
|
"""
|
||||||
Route together all of the pins of a given name that horizontally align.
|
Route together all of the pins of a given name that horizontally align.
|
||||||
Uses local_insts if insts not specified.
|
Uses local_insts if insts not specified.
|
||||||
Uses center of pin by default, or top or botom if specified.
|
Uses center of pin by default, or top or botom if specified.
|
||||||
|
New top level pin can be renamed with new_name, otherwise the new pin will keep the same name as old pins
|
||||||
TODO: Add equally spaced option for IR drop min, right now just 2
|
TODO: Add equally spaced option for IR drop min, right now just 2
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if new_name is not None:
|
||||||
|
pin_name = new_name
|
||||||
|
else:
|
||||||
|
pin_name = name
|
||||||
|
|
||||||
bins = {}
|
bins = {}
|
||||||
if not insts:
|
if not insts:
|
||||||
|
|
@ -1016,7 +1019,8 @@ class layout():
|
||||||
# start=left_pos,
|
# start=left_pos,
|
||||||
# end=right_pos,
|
# end=right_pos,
|
||||||
# width=via_height)
|
# width=via_height)
|
||||||
self.add_layout_pin_segment_center(text=name,
|
|
||||||
|
self.add_layout_pin_segment_center(text=pin_name,
|
||||||
layer=pin_layer,
|
layer=pin_layer,
|
||||||
start=left_pos,
|
start=left_pos,
|
||||||
end=right_pos,
|
end=right_pos,
|
||||||
|
|
@ -1368,12 +1372,11 @@ class layout():
|
||||||
min_width = drc("minwidth_{}".format(layer))
|
min_width = drc("minwidth_{}".format(layer))
|
||||||
|
|
||||||
if preferred_directions[layer] == "V":
|
if preferred_directions[layer] == "V":
|
||||||
new_height = max(min_area / width, min_width)
|
new_height = ceil(max(min_area / width, min_width))
|
||||||
new_width = width
|
new_width = width
|
||||||
else:
|
else:
|
||||||
new_width = max(min_area / height, min_width)
|
new_width = ceil(max(min_area / height, min_width))
|
||||||
new_height = height
|
new_height = height
|
||||||
|
|
||||||
debug.check(min_area <= round_to_grid(new_height*new_width), "Min area violated.")
|
debug.check(min_area <= round_to_grid(new_height*new_width), "Min area violated.")
|
||||||
|
|
||||||
self.add_rect_center(layer=layer,
|
self.add_rect_center(layer=layer,
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
@ -51,7 +51,7 @@ class rom_verilog:
|
||||||
for port in self.all_ports:
|
for port in self.all_ports:
|
||||||
if port in self.read_ports:
|
if port in self.read_ports:
|
||||||
self.vf.write("// Port {0}: R\n".format(port))
|
self.vf.write("// Port {0}: R\n".format(port))
|
||||||
self.vf.write(" clk{0},csb{0},addr{0},dout{0}".format(port))
|
self.vf.write(" clk{0},cs{0},addr{0},dout{0}".format(port))
|
||||||
# Continue for every port on a new line
|
# Continue for every port on a new line
|
||||||
if port != self.all_ports[-1]:
|
if port != self.all_ports[-1]:
|
||||||
self.vf.write(",\n")
|
self.vf.write(",\n")
|
||||||
|
|
@ -111,7 +111,7 @@ class rom_verilog:
|
||||||
"""
|
"""
|
||||||
Create the input regs for the given port.
|
Create the input regs for the given port.
|
||||||
"""
|
"""
|
||||||
self.vf.write(" reg csb{0}_reg;\n".format(port))
|
self.vf.write(" reg cs{0}_reg;\n".format(port))
|
||||||
self.vf.write(" reg [ADDR_WIDTH-1:0] addr{0}_reg;\n".format(port))
|
self.vf.write(" reg [ADDR_WIDTH-1:0] addr{0}_reg;\n".format(port))
|
||||||
if port in self.read_ports:
|
if port in self.read_ports:
|
||||||
self.vf.write(" reg [DATA_WIDTH-1:0] dout{0};\n".format(port))
|
self.vf.write(" reg [DATA_WIDTH-1:0] dout{0};\n".format(port))
|
||||||
|
|
@ -125,14 +125,14 @@ class rom_verilog:
|
||||||
self.vf.write(" // All inputs are registers\n")
|
self.vf.write(" // All inputs are registers\n")
|
||||||
self.vf.write(" always @(posedge clk{0})\n".format(port))
|
self.vf.write(" always @(posedge clk{0})\n".format(port))
|
||||||
self.vf.write(" begin\n")
|
self.vf.write(" begin\n")
|
||||||
self.vf.write(" csb{0}_reg = csb{0};\n".format(port))
|
self.vf.write(" cs{0}_reg = cs{0};\n".format(port))
|
||||||
self.vf.write(" addr{0}_reg = addr{0};\n".format(port))
|
self.vf.write(" addr{0}_reg = addr{0};\n".format(port))
|
||||||
if port in self.read_ports:
|
if port in self.read_ports:
|
||||||
self.add_write_read_checks(port)
|
self.add_write_read_checks(port)
|
||||||
|
|
||||||
if port in self.read_ports:
|
if port in self.read_ports:
|
||||||
self.vf.write(" #(T_HOLD) dout{0} = {1}'bx;\n".format(port, self.word_size))
|
self.vf.write(" #(T_HOLD) dout{0} = {1}'bx;\n".format(port, self.word_size))
|
||||||
self.vf.write(" if ( !csb{0}_reg && VERBOSE ) \n".format(port))
|
self.vf.write(" if ( cs{0}_reg && VERBOSE ) \n".format(port))
|
||||||
self.vf.write(" $display($time,\" Reading %m addr{0}=%b dout{0}=%b\",addr{0}_reg,mem[addr{0}_reg]);\n".format(port))
|
self.vf.write(" $display($time,\" Reading %m addr{0}=%b dout{0}=%b\",addr{0}_reg,mem[addr{0}_reg]);\n".format(port))
|
||||||
|
|
||||||
self.vf.write(" end\n\n")
|
self.vf.write(" end\n\n")
|
||||||
|
|
@ -142,7 +142,7 @@ class rom_verilog:
|
||||||
Add the module input and output declaration for a port.
|
Add the module input and output declaration for a port.
|
||||||
"""
|
"""
|
||||||
self.vf.write(" input clk{0}; // clock\n".format(port))
|
self.vf.write(" input clk{0}; // clock\n".format(port))
|
||||||
self.vf.write(" input csb{0}; // active low chip select\n".format(port))
|
self.vf.write(" input cs{0}; // active high chip select\n".format(port))
|
||||||
|
|
||||||
self.vf.write(" input [ADDR_WIDTH-1:0] addr{0};\n".format(port))
|
self.vf.write(" input [ADDR_WIDTH-1:0] addr{0};\n".format(port))
|
||||||
if port in self.read_ports:
|
if port in self.read_ports:
|
||||||
|
|
@ -159,10 +159,10 @@ class rom_verilog:
|
||||||
"""
|
"""
|
||||||
self.vf.write("\n")
|
self.vf.write("\n")
|
||||||
self.vf.write(" // Memory Read Block Port {0}\n".format(port))
|
self.vf.write(" // Memory Read Block Port {0}\n".format(port))
|
||||||
self.vf.write(" // Read Operation : When web{0} = 1, csb{0} = 0\n".format(port))
|
self.vf.write(" // Read Operation : When cs{0} = 1\n".format(port))
|
||||||
self.vf.write(" always @ (negedge clk{0})\n".format(port))
|
self.vf.write(" always @ (negedge clk{0})\n".format(port))
|
||||||
self.vf.write(" begin : MEM_READ{0}\n".format(port))
|
self.vf.write(" begin : MEM_READ{0}\n".format(port))
|
||||||
self.vf.write(" if (!csb{0}_reg)\n".format(port))
|
self.vf.write(" if (cs{0}_reg)\n".format(port))
|
||||||
self.vf.write(" dout{0} <= #(DELAY) mem[addr{0}_reg];\n".format(port))
|
self.vf.write(" dout{0} <= #(DELAY) mem[addr{0}_reg];\n".format(port))
|
||||||
self.vf.write(" end\n")
|
self.vf.write(" end\n")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
import copy
|
import copy
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from openram import sram_config
|
from openram import sram_config
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
@ -45,7 +45,10 @@ class functional(simulation):
|
||||||
sram.sp_write(self.sp_file, trim=OPTS.trim_netlist)
|
sram.sp_write(self.sp_file, trim=OPTS.trim_netlist)
|
||||||
# Copy sp file to temp dir
|
# Copy sp file to temp dir
|
||||||
self.temp_spice = path.join(OPTS.openram_temp, "sram.sp")
|
self.temp_spice = path.join(OPTS.openram_temp, "sram.sp")
|
||||||
|
try:
|
||||||
shutil.copy(self.sp_file, self.temp_spice)
|
shutil.copy(self.sp_file, self.temp_spice)
|
||||||
|
except shutil.SameFileError: # skip if the same
|
||||||
|
pass
|
||||||
|
|
||||||
if not corner:
|
if not corner:
|
||||||
corner = (OPTS.process_corners[0], OPTS.supply_voltages[0], OPTS.temperatures[0])
|
corner = (OPTS.process_corners[0], OPTS.supply_voltages[0], OPTS.temperatures[0])
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .datasheet_gen import datasheet_gen
|
from .datasheet_gen import datasheet_gen
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .custom_cell_properties import *
|
from .custom_cell_properties import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
||||||
# of Regents for the Oklahoma Agricultural and Mechanical College
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
model_name = "cacti"
|
model_name = "cacti"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from shared_config import *
|
from shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
from .shared_config import *
|
from .shared_config import *
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue