Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev -> Main update TO_NOV2024 #258

Merged
merged 23 commits into from
Nov 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b4e10a5
libs.tech: Fix a couple of remnent of GF180 reference in LVS macro
smunaut Oct 17, 2024
5119619
Fix https://github.com/IHP-GmbH/IHP-Open-PDK/issues/226
Oct 19, 2024
5b81303
Fix https://github.com/IHP-GmbH/IHP-Open-PDK/issues/226
Oct 19, 2024
67b3632
Update README.md
ThomasZecha Oct 19, 2024
5d4138d
new instantiation scheme for lv and hv MOS to fix bug in RG calculation
Oct 23, 2024
6a89d4e
Merge pull request #224 from TinyTapeout/pr-fix-180-ref
sergeiandreyev Oct 23, 2024
a25ff74
Merge pull request #230 from ThomasZecha/dev
KrzysztofHerman Oct 23, 2024
98e5b2d
Merge branch 'IHP-GmbH:dev' into dev
dwarning Oct 24, 2024
860268e
Merge pull request #233 from dwarning/dev
sergeiandreyev Oct 25, 2024
8015391
libs.tech/klayout: Fix the seal ring pcell EdgeSeal/boundary
smunaut Oct 29, 2024
f64c0cf
Merge pull request #244 from TinyTapeout/pr-seal-ring
sergeiandreyev Nov 1, 2024
b6cbdfb
SRAM cells layout: fixed layer
sergeiandreyev Nov 1, 2024
7c124b7
SRAM cells layout: fixed PG pins Metal1.txt and Metal4.txt layers (#239)
sergeiandreyev Nov 1, 2024
af478c8
feat(AUTHORS): added Markus Fritscher
sergeiandreyev Nov 3, 2024
ab6c456
PyCell for Klayout
Nov 4, 2024
3cdf29f
Merge pull request #253 from ThomasZecha/dev
sergeiandreyev Nov 5, 2024
83bf8ba
fix(xschem install script): change permissions to execute
sergeiandreyev Nov 6, 2024
516b01c
feat(Sealring Pycell): filler processing enhancement
sergeiandreyev Nov 8, 2024
8382287
feat(inductors): removed obsolete 'inductor*_sc|sp' devices from Pyce…
sergeiandreyev Nov 11, 2024
ae3c742
feat(.gitignore): added ignores for Git-pulse and Git-Cliff
sergeiandreyev Nov 11, 2024
f5d1b84
Update lvs_regression.yml
KrzysztofHerman Nov 12, 2024
1f7a18c
Update lvs_regression.yml
KrzysztofHerman Nov 12, 2024
b909af6
Update lvs_regression.yml
KrzysztofHerman Nov 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix #226
-reduced psutil-dependency to the use of conditional PyCell compilation

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
ThomasZecha committed Oct 19, 2024
commit 5119619d758770b271db0ba2cde6924b77c4850f
Original file line number Diff line number Diff line change
@@ -117,6 +117,8 @@ def getProcessNames():
processNames.append(parent.name().lower())
parent = parent.parent()

assert len(processNames) > 0

return processNames


@@ -148,9 +150,10 @@ def __init__(self):

tech = Tech.get('SG13_dev')

processNames = getProcessNames()
processNames = []

if os.getenv('IHP_PYCELL_LIB_PRINT_PROCESS_TREE') is not None:
processNames = getProcessNames()
processChain = ''
isFirst = True
for processName in reversed(processNames):
@@ -160,6 +163,7 @@ def __init__(self):
isFirst = False
print(f'Current process chain: {processChain}')


module = importlib.import_module(f"{__name__}.ihp.pypreprocessor")
preProcessor = getattr(module, "preprocessor")

@@ -190,6 +194,9 @@ def __init__(self):
envs.append(env.lower())

for define in defines:
if len(processNames) == 0:
processNames = getProcessNames()

locDefine = define.lower()
for processName in processNames:
if processName.find(locDefine) != -1: