Got Wally sweep running again

This commit is contained in:
David Harris 2023-11-17 15:10:57 -08:00
parent c500a7c057
commit 7b33331cf7
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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)