mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Don't delete hdl directory at end of run
This commit is contained in:
parent
e3ed40620c
commit
9514abf0e0
@ -107,7 +107,7 @@ ifeq ($(SAIFPOWER), 1)
|
|||||||
cp -f ../pipelined/regression/power.saif .
|
cp -f ../pipelined/regression/power.saif .
|
||||||
endif
|
endif
|
||||||
dc_shell-xg-t -64bit -f scripts/$(NAME).tcl | tee $(OUTPUTDIR)/$(NAME).out
|
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)/WORK
|
||||||
rm -rf $(OUTPUTDIR)/alib-52
|
rm -rf $(OUTPUTDIR)/alib-52
|
||||||
|
|
||||||
|
@ -78,6 +78,13 @@ def freqPlot(tech, width, config):
|
|||||||
''' plots delay, area for syntheses with specified tech, module, width
|
''' 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))
|
freqsL, delaysL, areasL = ([[], []] for i in range(3))
|
||||||
for oneSynth in allSynths:
|
for oneSynth in allSynths:
|
||||||
if (width == oneSynth.width) & (config == oneSynth.config) & (tech == oneSynth.tech) & ('' == oneSynth.special):
|
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
|
# Due to parameterized Verilog must use analyze/elaborate and not
|
||||||
# read_verilog/vhdl (change to pull in Verilog and/or VHDL)
|
# 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
|
define_design_lib WORK -path ./$outputDir/WORK
|
||||||
analyze -f sverilog -lib WORK $my_verilog_files
|
analyze -f sverilog -lib WORK $my_verilog_files
|
||||||
elaborate $my_toplevel -lib WORK
|
elaborate $my_toplevel -lib WORK
|
||||||
|
Loading…
Reference in New Issue
Block a user