How to improve GPU-Utilization #1190
-
I find the code based on mmediting has low utilization of GPU. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is quite a general question because GPU utilization can be affected by many factors including data loading from the disk, data preprocessing (i.e. pipeline) which rely on CPU, and even the model it self. Specifically, you can check |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply, I will try to check up it. |
Beta Was this translation helpful? Give feedback.
This is quite a general question because GPU utilization can be affected by many factors including data loading from the disk, data preprocessing (i.e. pipeline) which rely on CPU, and even the model it self.
Specifically, you can check
data_time
in the log to see if some bottleneck at data loading exists and maybe the overall system loading to see if some other bottleneck exists.