blob: ba125b161a5612d2ed1a1476e889144cecd8c2b9 [file] [log] [blame]
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -euxo pipefail
device_serial="simulator"
if [ $# -ge 1 ] && [[ "$1" = "--device" ]]; then
shift 1
device_serial="$1"
shift
fi
source tests/scripts/setup-pytest-env.sh
make cython3
if [[ "${device_serial}" == "simulator" ]]; then
export TVM_TRACKER_PORT=9190
export TVM_TRACKER_HOST=0.0.0.0
env PYTHONPATH=python python3 -m tvm.exec.rpc_tracker --host "${TVM_TRACKER_HOST}" --port "${TVM_TRACKER_PORT}" &
TRACKER_PID=$!
sleep 5 # Wait for tracker to bind
# Temporary workaround for symbol visibility
export HEXAGON_SHARED_LINK_FLAGS="-Lbuild/hexagon_api_output -lhexagon_rpc_sim"
fi
num_of_devices=0
if [ ! "${device_serial}" == "simulator" ]; then
IFS=',' read -ra ADDR <<< "$device_serial"
for i in "${ADDR[@]}"; do
num_of_devices=$(($num_of_devices+1))
done
fi
export ANDROID_SERIAL_NUMBER=${device_serial}
if [ "${device_serial}" == "simulator" ]; then
run_pytest ctypes python-contrib-hexagon tests/python/contrib/test_hexagon
else
run_pytest ctypes python-contrib-hexagon tests/python/contrib/test_hexagon -n=$num_of_devices
fi
if [[ "${device_serial}" == "simulator" ]]; then
kill ${TRACKER_PID}
fi