Skip to content

Commit

Permalink
fix(scripts): reduce steps/time on leak test
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Feb 21, 2023
1 parent 2c8bd4b commit 6204829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/scripts/test-memory-leak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test_images=0
while true;
do
curl "http://${test_host}:5000/api/txt2img?"\
'cfg=16.00&steps=35&scheduler=deis-multi&seed=-1&'\
'cfg=16.00&steps=3&scheduler=deis-multi&seed=-1&'\
'prompt=an+astronaut+eating+a+hamburger&negativePrompt=&'\
'model=stable-diffusion-onnx-v1-5&platform=any&'\
'upscaling=upscaling-real-esrgan-x2-plus&correction=correction-codeformer&'\
Expand All @@ -14,5 +14,5 @@ do
--insecure || break;
((test_images++));
echo "waiting after $test_images";
sleep 30;
sleep 10;
done

0 comments on commit 6204829

Please sign in to comment.