Revision e3bcba28df8cbbed4eb5a60557660a2832ddb9f0 authored by Steven Johnson on 02 November 2022, 23:39:13 UTC, committed by Steven Johnson on 02 November 2022, 23:39:13 UTC
1 parent 1230042
Raw File
run_benchmark_on_device.sh
#!/bin/bash
#
# Run the benchmark binary on device. This script will build and push the
# binary to the device, push the tflite file(s), the run the binary.
#
# export ANDROID_SERIAL as an env var to choose a specific device (if you have multiple connected via adb).
#
# export HL_TARGET to specify the target architecture to build. (Defaults to arm-64-android.)
#
# usage: HL_TARGET=arm-64-android ./run_benchmark_on_device.sh local_testdata/*.tflite [--cmake]

set -e

HANNK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

export HL_TARGET=${HL_TARGET:-arm-64-android}

DEVICE_DIR="/data/local/tmp/halide/benchmarking"

if [[ -n "${ANDROID_SERIAL}" ]]; then
  echo Using ANDROID_SERIAL=${ANDROID_SERIAL}
fi
if [[ -n "${TASKSET}" ]]; then
  echo Using TASKSET=${TASKSET}
  TASKSET_CMD="taskset ${TASKSET}"
fi
echo Using HL_TARGET=${HL_TARGET}

if [ "$#" -eq 0 ]; then
    echo "Specify at least one .tflite file to use."
    exit 1
fi

LOCAL_FILES=
DEVICE_ARGS=
BUILD_IS_CMAKE=0
for ARG in "$@"
do
    if [[ "${ARG}" == "--cmake" ]]; then
        # Don't propagate
        BUILD_IS_CMAKE=1
    else
        if [ -f "${ARG}" ]; then
            # assume it's a file.
            BASENAME=$(basename "${ARG}")
            LOCAL_FILES="${LOCAL_FILES} ${ARG}"
            DEVICE_ARGS="${DEVICE_ARGS} ${DEVICE_DIR}/${BASENAME}"
        else
            # assume it's a flag (or flag argument) and just pass thru
            DEVICE_ARGS="${DEVICE_ARGS} ${ARG}"
        fi
    fi
done

if [[ ${BUILD_IS_CMAKE} -eq 1 ]]; then
    # TODO: this isn't working yet; crosscompilation in CMake is painful
    echo Building [CMake]...
    ${HANNK_DIR}/configure_cmake.sh > /dev/null
    BUILD_TARGETS="${HANNK_DIR}/build/benchmark"
    cmake --build ${HANNK_DIR}/build -j`nproc` benchmark
else
    echo Building [Make]...
    cd ${HANNK_DIR}
    BUILD_TARGETS="bin/${HL_TARGET}/benchmark"
    make -j `nproc` ${BUILD_TARGETS} > /dev/null
fi


# Remove and re-create $DEVICE_DIR, to avoid accidentally re-using stale blobs.
adb shell rm -rf "${DEVICE_DIR}"
adb shell mkdir -p "${DEVICE_DIR}"

adb push ${BUILD_TARGETS} ${LOCAL_FILES} ${DEVICE_DIR}/
adb shell ${TASKSET_CMD} "${DEVICE_DIR}/benchmark ${DEVICE_ARGS}"

echo
echo All benchmarks complete.
back to top