gpt4 book ai didi

julia - Julia 相当于 Python 的 schedule 包是什么?

转载 作者:行者123 更新时间:2023-12-05 00:14:30 26 4
gpt4 key购买 nike

我有一段想要转换为 Julia 的 Python 代码。我使用schedule的python代码包裹。 Julia 中的等价物是什么,我查看了 Julia 文档中的“任务和并行计算”部分,但找不到类似的东西。 Python中的代码是:

def main():
schedule.every(0.25).seconds.do(read_modbus, 1, 1000, 100, 1)
while True:
schedule.run_pending()
time.sleep(0.05)

最佳答案

将一个 Timer 工作?这种形式的Timer Task 中调用您的函数所以你需要偶尔从你的主循环中让出控制权以允许计时器任务运行。您可以调用 yield , sleep , wait ,或者做IO,这里我展示的是等待定时器。

tstart = time()
ncalls = 0
read_modbus() = (global ncalls+=1;@show (time()-tstart)/ncalls,ncalls)
t=Timer((timer)->read_modbus(),0,0.25)

while true
wait(t) # wait for timer to go off
println("mainloop $ncalls")
end

关于julia - Julia 相当于 Python 的 schedule 包是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46730044/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com