mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-22 12:57:23 -04:00
Don't delete hdl directory at end of run
This commit is contained in:
parent
e3ed40620c
commit
9514abf0e0
3 changed files with 9 additions and 2 deletions
|
@ -107,7 +107,7 @@ ifeq ($(SAIFPOWER), 1)
|
|||
cp -f ../pipelined/regression/power.saif .
|
||||
endif
|
||||
dc_shell-xg-t -64bit -f scripts/$(NAME).tcl | tee $(OUTPUTDIR)/$(NAME).out
|
||||
rm -rf $(OUTPUTDIR)/hdl
|
||||
# rm -rf $(OUTPUTDIR)/hdl
|
||||
rm -rf $(OUTPUTDIR)/WORK
|
||||
rm -rf $(OUTPUTDIR)/alib-52
|
||||
|
||||
|
|
|
@ -78,6 +78,13 @@ def freqPlot(tech, width, config):
|
|||
''' plots delay, area for syntheses with specified tech, module, width
|
||||
'''
|
||||
|
||||
current_directory = os.getcwd()
|
||||
final_directory = os.path.join(current_directory, 'plots/wally')
|
||||
# if not os.path.exists(final_directory):
|
||||
# os.makedirs(final_directory)
|
||||
# os.chdir(final_directory)
|
||||
|
||||
|
||||
freqsL, delaysL, areasL = ([[], []] for i in range(3))
|
||||
for oneSynth in allSynths:
|
||||
if (width == oneSynth.width) & (config == oneSynth.config) & (tech == oneSynth.tech) & ('' == oneSynth.special):
|
||||
|
|
|
@ -56,7 +56,7 @@ set vhdlout_show_unconnected_pins "true"
|
|||
# Due to parameterized Verilog must use analyze/elaborate and not
|
||||
# read_verilog/vhdl (change to pull in Verilog and/or VHDL)
|
||||
#
|
||||
set alib_library_analysis_path ./$outputDir
|
||||
#set alib_library_analysis_path ./$outputDir
|
||||
define_design_lib WORK -path ./$outputDir/WORK
|
||||
analyze -f sverilog -lib WORK $my_verilog_files
|
||||
elaborate $my_toplevel -lib WORK
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue