You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the A100 graphics card, gptq's custom operator has been tested and is slower than pytorch's linear layer when batch > 10, thus affecting the throughput of high concurrency during model inference. I tried to modify the hyperparameters in q_gemm, but there was no obvious improvement. I would like to ask if there are any ideas to improve the speed of high concurrency? Thanks
The text was updated successfully, but these errors were encountered:
I am working on some improvements, yes, specifically for batch sizes around 5-30, but the improvements should also make it easier to adjust kernel parameters to optimize for other architectures. I'm not sure when I'll have anything ready, though.
(Basically the issue is that the kernel becomes compute-bound at higher batch sizes, and the solution is likely going to be tensor cores.)
On the A100 graphics card, gptq's custom operator has been tested and is slower than pytorch's linear layer when batch > 10, thus affecting the throughput of high concurrency during model inference. I tried to modify the hyperparameters in q_gemm, but there was no obvious improvement. I would like to ask if there are any ideas to improve the speed of high concurrency? Thanks
The text was updated successfully, but these errors were encountered: