From 7b33331cf73ed0daa7dcf21647dc8323592f92f3 Mon Sep 17 00:00:00 2001
From: David Harris <David_Harris@hmc.edu>
Date: Fri, 17 Nov 2023 15:10:57 -0800
Subject: [PATCH] Got Wally sweep running again

---
 synthDC/Makefile        | 2 +-
 synthDC/ppa/ppaSynth.py | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/synthDC/Makefile b/synthDC/Makefile
index 470ec8f47..2183cab83 100755
--- a/synthDC/Makefile
+++ b/synthDC/Makefile
@@ -24,7 +24,7 @@ export WIDTH ?= 32
 
 time := $(shell date +%F-%H-%M)
 hash := $(shell git rev-parse --short HEAD)
-export OUTPUTDIR := runs/$(DESIGN)_$(CONFIG)_$(TECH)_$(FREQ)_MHz_$(time)_$(TITLE)_$(hash)
+export OUTPUTDIR := runs/$(DESIGN)_$(CONFIG)_$(MOD)_$(TECH)nm_$(FREQ)_MHz_$(time)_$(TITLE)_$(hash)
 export SAIFPOWER ?= 0
 
 OLDCONFIGDIR ?= ${WALLY}/config
diff --git a/synthDC/ppa/ppaSynth.py b/synthDC/ppa/ppaSynth.py
index 30fe1254f..315fa554a 100755
--- a/synthDC/ppa/ppaSynth.py
+++ b/synthDC/ppa/ppaSynth.py
@@ -85,7 +85,8 @@ if __name__ == '__main__':
 
     ##### Run a sweep for multiple modules/widths based on best delay found in existing syntheses
 	modules = ['adder']
-	widths = [8, 16, 32, 64, 128]
+#	widths = [8, 16, 32, 64, 128]
+	widths = [32]
 	tech = 'sky130'
 	synthsToRun = freqModuleSweep(widths, modules, tech)