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.
41 lines
1.1 KiB
41 lines
1.1 KiB
#!/bin/bash
|
|
# Executes the runtime in GDB
|
|
# Substitutes the absolute path from the container with a path relatively derived from the location of this script
|
|
# This allows debugging outside of the Docker container
|
|
# Also disables pagination and stopping on SIGUSR1
|
|
|
|
# We are currently unclear why the image classifier isn't working properly
|
|
# Both bmp and png formats are added to the repo while debugging
|
|
# file_type=bmp
|
|
# file_type=png
|
|
|
|
function usage {
|
|
echo "$0 [image_folder_path]"
|
|
exit 1
|
|
}
|
|
|
|
if [ $# != 1 ] ; then
|
|
usage
|
|
exit 1;
|
|
fi
|
|
|
|
|
|
batch_id=0
|
|
|
|
path=$1
|
|
files=$(ls $path)
|
|
|
|
for image in $files; do
|
|
for instance in 1; do
|
|
echo "Classifying $image"
|
|
#curl -H 'Expect:' -H "Content-Type: Image/$file_type" --data-binary "@images/$file_type/$class$instance.$file_type" localhost:10000 2> /dev/null
|
|
hey -disable-compression -disable-keepalive -disable-redirects -c 1 -z 120s -cpus 1 -t 0 -m GET -D "$path/$image" "http://10.10.1.1:10000" > "client_$batch_id.txt" &
|
|
((batch_id++))
|
|
done
|
|
done
|
|
pids=$(pgrep hey | tr '\n' ' ')
|
|
[[ -n $pids ]] && wait -f $pids
|
|
printf "[OK]\n"
|
|
|
|
|