10 questions
-1
votes
1
answer
33
views
Debugging EAS: find_energy_efficient_cpu never called on Arm heterogeneous platform
I'm testing EAS on an 8-core machine (2 big cores, 6 little cores) with kernel version 6.6. I've verified that the system configuration is correct, but the core EAS function is never called. I've ...
0
votes
0
answers
39
views
why periodic python sched function repeats itself every second instead of repeat every other n minutes?
I want my script to run every n minutes starting from NOT NOW, but rather starting from the time I specified.
When I do:
def periodic(scheduler, interval, action, actionargs=()):
...
0
votes
1
answer
93
views
Scheduling functions/commands in python
I am attempting a simple script that schedules a set of commands. I want to build, but I am stuck with the initial steps using the sched2 package
What I ultimately trying to do is to have a set of ...
0
votes
1
answer
156
views
Generating coordinates in every 30 seconds
I want to write a function which can produce each circle coordinates in every 30 seconds. So far my code is like this:
import sched, time
import numpy as np
scheduler = sched.scheduler(time.time, time....
0
votes
2
answers
474
views
Invalid Argument when implementing sched
I've written a basic wrapper around sched.scheduler, but I'm getting:
File "/usr/local/anaconda3/lib/python3.7/sched.py", line 149, in run
delayfunc(time - now)
OSError: [Errno 22] ...