| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 set -o nounset | 6 set -o nounset |
| 7 set -o errexit | 7 set -o errexit |
| 8 | 8 |
| 9 PREFIX=${PREFIX:-} | 9 PREFIX=${PREFIX:-} |
| 10 VERIFY=${VERIFY:-yes} | 10 VERIFY=${VERIFY:-yes} |
| 11 EMU_HACK=${EMU_HACK:-yes} | 11 EMU_HACK=${EMU_HACK:-yes} |
| 12 | 12 |
| 13 python ../prepare_input.py --config $(basename $(pwd)) train | 13 python ../prepare_input.py --config $(basename $(pwd)) train |
| 14 | 14 |
| 15 if [[ "${EMU_HACK}" != "no" ]] ; then | 15 if [[ "${EMU_HACK}" != "no" ]] ; then |
| 16 touch costs.out place.out route.out | 16 touch costs.out place.out route.out |
| 17 fi | 17 fi |
| 18 | 18 |
| 19 ARGS1="-nodisp -place_only -init_t 5 -exit_t 0.005 -alpha_t 0.9412 -inner_num 2" | 19 ARGS1="-nodisp -place_only -init_t 5 -exit_t 0x1.47ae147ae147bp-8 -alpha_t \ |
| 20 ARGS2="-nodisp -route_only -route_chan_width 15 -pres_fac_mult 2 -acc_fac 1 -fir
st_iter_pres_fac 4 -initial_pres_fac 8" | 20 0x1.e1e4f765fd8aep-1 -inner_num 2" |
| 21 ARGS2="-nodisp -route_only -route_chan_width 15 -pres_fac_mult 2 -acc_fac 1 \ |
| 22 -first_iter_pres_fac 4 -initial_pres_fac 8" |
| 21 | 23 |
| 22 | 24 |
| 23 ${PREFIX} $1 ${DASHDASH} net.in arch.in place.out dum.out ${ARGS1} \ | 25 ${PREFIX} $1 ${DASHDASH} net.in arch.in place.out dum.out ${ARGS1} \ |
| 24 >place_log.out 2>stderr1.out | 26 >place_log.out 2>stderr1.out |
| 25 | 27 |
| 26 ${PREFIX} $1 ${DASHDASH} net.in arch.in place.in route.out ${ARGS2} \ | 28 ${PREFIX} $1 ${DASHDASH} net.in arch.in place.in route.out ${ARGS2} \ |
| 27 >route_log.out 2>stderr2.out | 29 >route_log.out 2>stderr2.out |
| 28 | 30 |
| 29 LIST="place_log.out route_log.out costs.out route.out" | 31 LIST="place_log.out route_log.out costs.out route.out" |
| 30 | 32 |
| 31 if [[ "${VERIFY}" != "no" ]] ; then | 33 if [[ "${VERIFY}" != "no" ]] ; then |
| 32 echo "VERIFY" | 34 echo "VERIFY" |
| 33 for i in ${LIST} ; do | 35 for i in ${LIST} ; do |
| 34 # NOTE: We are a little more conservative than spec with regard to reltol. | 36 # NOTE: We are a little more conservative than spec with regard to reltol. |
| 35 # (the normal harness uses weaker reltols for some files). | 37 # (the normal harness uses weaker reltols for some files). |
| 36 ../specdiff.sh -r 0.015 -l 10 $i data/train/output/$i | 38 ../specdiff.sh -r 0.015 -l 10 $i data/train/output/$i |
| 37 done | 39 done |
| 38 fi | 40 fi |
| 39 echo "OK" | 41 echo "OK" |
| OLD | NEW |