4
netikras
150d

I mean... you've gotta love Apple's resource management and observation. Math and logic have no say in any of this.

Comments
  • 1
    @retoor but still if you sum the first two processes you get 95.5+8.5 > 100 🤔
  • 1
    @cafecortado @retoor htop shows cpu% per-thread. So max should be .8k%
  • 1
    @retoor sorry, on on phone kbd numbers take longer to type than .8k :)

    a process can run on 1 TID and in that case it will utilize max 100% of a single CPU thread

    If a process runs with 2 TIDs, it can utilize max 200% of CPU treads (x2 cpu treads max, loaded 100%)

    If a process spawns many threads, more than there are computational domains (CPU threads), the process can utilize max $(${no_of_cpu_threads}*100)% of CPU threads (i.e. all CPU cores at 100%.. theoretically. In practice the usage will most likely be lower)
Add Comment