1
0
Fork 0
onnx-web/api/scripts/test-memory-leak.sh

19 lines
558 B
Bash
Raw Normal View History

2023-02-19 04:53:57 +00:00
test_host="${1:-127.0.0.1}"
test_images=0
while true;
do
curl "http://${test_host}:5000/api/txt2img?"\
'cfg=16.00&steps=35&scheduler=deis-multi&seed=-1&'\
'prompt=an+astronaut+eating+a+hamburger&negativePrompt=&'\
'model=stable-diffusion-v1-5&platform=any&'\
'upscaling=upscaling-real-esrgan-x2-plus&correction=correction-codeformer&'\
'lpw=false&width=512&height=512&upscaleOrder=correction-both' \
-X 'POST' \
--compressed \
--insecure || break;
((test_images++));
echo "waiting after $test_images";
sleep 30;
done