You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
254 B
18 lines
254 B
7 years ago
|
#! /usr/bin/bash
|
||
|
|
||
|
pushd ../.. > /dev/null
|
||
|
|
||
|
# start demo client
|
||
|
CUDA_VISIBLE_DEVICES=0 \
|
||
|
python -u deploy/demo_client.py \
|
||
|
--host_ip='localhost' \
|
||
|
--host_port=8086 \
|
||
|
|
||
|
if [ $? -ne 0 ]; then
|
||
|
echo "Failed in starting demo client!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
|
||
|
exit 0
|