From 74ea0a29b43f3c6af720e09c7bbd0df3d3631ba3 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 26 Mar 2020 10:39:37 -0400 Subject: [PATCH 1/3] Corrected problem with ResSimple where extresist was not handling non-manhattan geometry in device types. --- resis/ResSimple.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/resis/ResSimple.c b/resis/ResSimple.c index f55b0845..7c7bc23f 100644 --- a/resis/ResSimple.c +++ b/resis/ResSimple.c @@ -750,7 +750,16 @@ ResCalculateChildCapacitance(me) for (tptr = me->rn_te; tptr != NULL; tptr = tptr->te_nextt) { dev = tptr->te_thist; - t = TiGetType(dev->rd_tile); + /* Hack for non-Manhattan geometry. Only one side of a split */ + /* tile should correspond to a device type. */ + if (IsSplit(dev->rd_tile)) + { + t = TiGetLeftType(dev->rd_tile); + if (ExtCurStyle->exts_device[t] == NULL) + t = TiGetRightType(dev->rd_tile); + } + else + t = TiGetType(dev->rd_tile); if (dev->rd_fet_gate == me) { devptr = ExtCurStyle->exts_device[t]; From d6b4b014d67dadee9e76c8a6fc79229b486da464 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 27 Mar 2020 16:51:23 -0400 Subject: [PATCH 2/3] Corrected bad reference to GDS_FILE property when it may not exist. --- calma/CalmaWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calma/CalmaWrite.c b/calma/CalmaWrite.c index b610f6bc..1d65a5fa 100644 --- a/calma/CalmaWrite.c +++ b/calma/CalmaWrite.c @@ -451,7 +451,7 @@ calmaDumpStructure(def, outf, calmaDefHash, filename) chklibname = (char *)DBPropGet(edef, "GDS_FILE", &isReadOnly); /* Is the library name the same? */ - if (isAbstract && !strcmp(filename, chklibname)) + if (isAbstract && isReadOnly && !strcmp(filename, chklibname)) { /* Same library, so keep the cellname and mark the cell */ /* as having been written to GDS. */ From 2a7e2ab110dca5cb1c628420f94217779ff54d72 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 27 Mar 2020 17:14:20 -0400 Subject: [PATCH 3/3] Updated version with the last fix. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6635c799..bc573855 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.2.203 +8.2.204