We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c2e2a commit c40cb50Copy full SHA for c40cb50
ODIN_II/verify_odin.sh
@@ -677,16 +677,18 @@ function sim() {
677
678
for arches in $(echo ${_arch_list})
679
do
680
- arch_cmd=""
681
- if [ -e ${arches} ]
682
- then
683
- arch_cmd="-a ${arches}"
684
- fi
685
-
686
arch_name=$(basename ${arches%.*})
687
688
TEST_FULL_REF="${bench_name}/${circuit_name}/${arch_name}"
689
DIR="${NEW_RUN_DIR}/${TEST_FULL_REF}"
+ NEW_ARCH="${DIR}/${arches}"
+ `python3 vtr_flow/scripts/add_tiles.py --arch_xml ${arches} > ${NEW_ARCH}`
+
+ arch_cmd=""
+ if [ -e ${NEW_ARCH} ]
+ then
690
+ arch_cmd="-a ${NEW_ARCH}"
691
+ fi
692
mkdir -p $DIR
693
694
###############################
0 commit comments