| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #!/bin/env bash
- MAKE_OPTS=${MAKE_OPTS:-""}
- RUNON=${RUNON-fpga}
- CONFIG=${CONFIG-"n900,ux900"}
- RUNYAML=${RUNYAML-}
- BACKUP=${BACKUP:-Backups}
- CFGSET=${CFGSET:-mini}
- BITSET=${BITSET:-latest}
- RUNMODE=${RUNMODE-all}
- VERBOSE=${VERBOSE-}
- MYSCRIPTDIR=$(dirname $(readlink -f $BASH_SOURCE))
- MYSCRIPTDIR=$(readlink -f $MYSCRIPTDIR)
- COMMON_ENV=$(readlink -f $MYSCRIPTDIR/../env.sh)
- FPGALOC=
- CFGLOC=
- if [ "x$RUNYAML" != "x" ] ; then
- RUNYAML=$(readlink -f $RUNYAML)
- if [ ! -f $RUNYAML ] ; then
- echo "$RUNYAML not exist, please check!"
- exit 1
- fi
- fi
- source $COMMON_ENV
- gen_logdir bareapp
- describe_env
- function setup_suite {
- local cfgloc=${1:-mini}
- local fpgaloc=${2:-latest}
- local configpath=${MYSCRIPTDIR}/configs/${cfgloc}
- local fpgapath=${MYSCRIPTDIR}/bitstreams/$fpgaloc
- if [ ! -d $configpath ] ; then
- echo "Can't find proper test suite $cfgloc located in $configpath"
- echo "Please pass correct CFGSET value, such as CFGSET=mini or CFGSET=full"
- exit 1
- fi
- if [ ! -d $fpgapath ] ; then
- echo "Can't find proper test suite $fpgaloc located in $fpgapath"
- echo "Please pass correct FPGASET value, such as FPGASET=latest or FPGASET=202206"
- exit 1
- fi
- CFGLOC=$configpath
- FPGALOC=$fpgapath
- }
- function runbench {
- local yfn=$1
- local logdir=$2
- local mkoptions=${@:3}
- local RUNNER_CMD="python3 $NSDK_RUNNER_PY --appyaml ${MYSCRIPTDIR}/$yfn.yaml --logdir $LOGDIR/$logdir --runon $RUNON --cfgloc $CFGLOC --fpgaloc $FPGALOC"
- if [ "x$RUNYAML" != "x" ] ; then
- RUNNER_CMD="${RUNNER_CMD} --runyaml $RUNYAML"
- fi
- if [ "x$CONFIG" != "x" ] ; then
- RUNNER_CMD="${RUNNER_CMD} --config \"$CONFIG\""
- fi
- if [ "x$VERBOSE" == "x1" ] ; then
- RUNNER_CMD="${RUNNER_CMD} --verbose"
- fi
- if [ "x$mkoptions" != "x" ] ; then
- RUNNER_CMD="${RUNNER_CMD} --make_options \"$mkoptions\""
- fi
- echo $RUNNER_CMD
- if [[ $DRYRUN == 0 ]] ; then
- export OLDRUNMODE=$RUNMODE
- unset RUNMODE
- eval $RUNNER_CMD
- export RUNMODE=$OLDRUNMODE
- unset OLDRUNMODE
- fi
- }
- function do_bareapp {
- pushd $NSDK_ROOT
- if [ "x${RUNMODE}" == "xall" ] || [ "x${RUNMODE}" == "xbare" ] ; then
- echo "Run all baremetal applications for all cores"
- runbench bareapp bareapp ""
- fi
- if [ "x${RUNMODE}" == "xall" ] || [ "x${RUNMODE}" == "xclib" ] ; then
- echo "Run all baremetal applications using libncrt for all cores"
- runbench clibapp clibapp ""
- fi
- # generate report for all modes
- RUNCMD="python3 $NSDK_REPORT_PY --logdir $LOGDIR --split --run"
- if [[ $DRYRUN == 0 ]] ; then
- eval $RUNCMD
- fi
- popd
- }
- setup_suite ${CFGSET} ${FPGASET}
- do_bareapp | tee $LOGDIR/build.log
- zip_logdir
|