HI Vaughn,
I want to know how to give the file list to the vtr tool.
The File list has all the RTL files which needs to be synthesized using the vtr tool.
Whats the command to pass the file list ?
Thanks,
Waseem
--
You received this message because you are subscribed to the Google Groups "VTR-Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vtr-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vtr-users/MA0P287MB01400DB3463E1A69426AFD208BC59%40MA0P287MB0140.INDP287.PROD.OUTLOOK.COM.
Hi Aman,
Could you provide a run command with config option as an example
The current command which we are using to compile a single rtl file using VTR is as below :
$VTR_ROOT/vtr_flow/scripts/run_vtr_flow.py $SRC_RTL/RTL/addr.v $SRC_RTL/RTL/k6_frac_N10_frac_chain_mem32K_40nm_dpram.xml -temp_dir . -route_chan_width 40
$SRC_RTL is the directory where we keep our rtl files and architectural file of our design
Now what we are trying to do is compile a bigger design which has couple of more RTL files.
Inside the RTL folder there is include directory which has .vh files which
$SRC_RTL/RTL/include
RTL files
$SRC_RTL/RTL/top.v
$SRC_RTL/RTL/m1.v
$SRC_RTL/RTL/m2.v
$SRC_RTL/RTL/m3.v
Do we have to keep the config.txt in the RTL folder ?
We have created the config.txt the snapshot is as below:
*******************************************************************************************************************
# Path to directory of circuits to use
circuits_dir=$SRC_RTL/RTL/
# Path to directory of includes circuits to use
includes_dir=$SRC_RTL/RTL/include
# Path to directory of architectures to use
archs_dir=$SRC_RTL/RTL/
# Add circuits to list to sweep
circuit_list_add=top.v
# Add circuits to includes list to sweep
include_list_add=common1.vh
include_list_add= common2.vh
include_list_add=m1.v
include_list_add=m2.v
include_list_add=m3.v
# Add architectures to list to sweep
arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm_mult9x9.xml
# Parse info and how to parse
#parse_file=vpr_no_timing.txt
# How to parse QoR info
#qor_parse_file=qor_no_timing.txt
# Script parameters
script_params_common=-track_memory_usage --timing_analysis off
*******************************************************************************************************************
Could you confirm if the config.txt is ok
What’s the command line where we can pass the config.txt
$VTR_ROOT/vtr_flow/scripts/run_vtr_flow.py $SRC_RTL/RTL/config.txt ????
Thanks and Regards,
Waseem
Hi Aman,
$VTR_ROOT/vtr_flow/scripts/run_vtr_task.py -$SRC_RTL/RTL/config.txt
Is this the correct command.
Wasim