Efficient and fast Python While loop while using sleep() Efficient and fast Python While loop while using sleep() python python

Efficient and fast Python While loop while using sleep()


The slow CPU wasting part is the "do serial sending". The while loop with just a short sleep will use negligible CPU.

Can you show the serial sending code. There may be a way to speed that up.

On this rather slow CPU I see this:

import timewhile True: time.sleep(0.2)      # 0% CPUwhile True: time.sleep(0.02)     # 0% CPUwhile True: time.sleep(0.002)    # 0.5% CPUwhile True: time.sleep(0.0002)   # 6% CPUwhile True: time.sleep(0.00002)  # 18% CPU

Now do some extra work in the loop:

import timewhile True: range(10000) and None; time.sleep(0.2)      # 1% CPUwhile True: range(10000) and None; time.sleep(0.02)     # 15% CPUwhile True: range(10000) and None; time.sleep(0.002)    # 60% CPUwhile True: range(10000) and None; time.sleep(0.0002)   # 86% CPU

I ran those in the interpreter and stopped each while loop with ctrl-C.


In regards to your comment on Joachim's answer:

Then your microcontroller code needs a redesign. Otherwise you're just turning you general-purpose computer into nothing more than a dumb "microcontroller" that iterates over unneeded code repeatedly, hence the 100% cpu. Another symptom of you using your computer incorrectly is the fact that your hardware motor's speed depends on the speed at which you send commands to it via the serial interface. You need to "command" it with the computer which will host your high-level logic. And your micro-controller needs to handle the low-level, repetative control of the motor.


You have to figure out the tradeoff you are willing to have between speed and CPU load.

If you have to send short bursts of data, while not doing so much between messages, then maybe you can live with high CPU load for a short time as the average might still be low.