Note that this would be running from a single thread as this is a single script, meaning this would run on one processor of a multi-core machine.
If the CPU has 2 logical processors, this thread will max out the processor it is running on at 50%.
If the CPU has 4 logical processors, this thread will max out the processor at 25%.
If the CPU has 8 logical processors, this thread will max out the processor at 13%.

Comment