[SOLVED] What is gpu and cpu time(ms)??

Status
Not open for further replies.
Solution
Time it takes the gpu\cpu to render out frames

Less is better, and having the 2 as close together as possible is also better.
say, 10 ms is 100fps, since 10ms is 100th of a second.
CPU time: How long it took for the CPU to process the game's logic
GPU time: How long it took for the GPU to render a frame

While having both lower is better, CPU time < GPU time is a better situation to be in. CPU time dictates the maximum frame rate you can get because the GPU isn't going to get anything to render until the CPU is done. So if you get a result like CPU time is 33ms, GPU time is 10ms, and wonder why you're getting say 30FPS, it's because the CPU is the bottleneck.
 
  • Like
Reactions: Matoo69
Status
Not open for further replies.

TRENDING THREADS