-
I am running on an A6000 GPU.
Also, the processing speed is halved when running batch size=3. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
it is processing the image in parallel but the performance is capped by GPU Core not VRAM |
Beta Was this translation helpful? Give feedback.
stating the obvious
processing something in parallel does that mean performance benefit
you only get performance benefit from parallelizing when if parallelizing removes the bottleneck
webui IS processing the images in parallel
but that doesn't mean that you will see a performance difference
extremely simplified
batch size increases the number of work that your processor is requested to do in a given time
for example
if at batch size of 1 processor utilization is only 50% that it has spare room processing more work in parallel
now if you said batch size 2 and it's able to utilize the processor to 100%, it will be able to do the doble the ammount work in the same amount of time
but now if…