numba的nopython模式中的挂钟定时器(性能计数器)

时间:2018-05-03 19:20:30

标签: python macos ctypes numba cffi

我有一个用numba写的长期运行的数值例程,使用它的nopython模式。因为它是nopython,我不能使用let sayHello = require('./helloWorld2'); sayHello; // hello world来阻止它,也不会在它运行时获得有关它的进度的任何反馈。因此,我想定期中断例程以退回到python中。我想用挂钟时间来确定停止的时间点。我可以使用numba的nopython模式吗?我想可以使用numba的KeyboardInterruptctypes支持从适当的库中调用某些函数。在python二进制文件或OS X上的另一个标准库中是否有这样的函数?

0 个答案:

没有答案