如何检查前端是否认为评估仍在运行?
有没有办法以编程方式检查前端是否认为评估仍在运行? 或者甚至更好:有没有办法检查前端是否有一些待处理的输入要发送到内核?
PS 这个问题源自上一个问题。
编辑
当评估前端中的单元时,我们通常为内核创建一个输入队列。
我需要一个函数,如果前端已将来自 EvaluationNotebook[]
的输入队列的最后一个输入发送到内核,该函数将返回 True
。或者换句话说,如果当前输入是前端生成的输入队列的最后一个输入,我需要一个返回 True 的函数。
Is there a way to check programmatically whether the FrontEnd considers evaluation still running?
Or even better: is there a way to check whether the FrontEnd has some pending inputs to be sent to the kernel?
P.S. This question has arisen from previous question.
EDIT
When evaluating a Cell in the FrontEnd we usually create a queue of inputs for the kernel.
I need a function that will return True
if the FrontEnd has sent to the kernel the last input of the queue of inputs from the EvaluationNotebook[]
. Or in other words I need a function that returns True
if this current input is the last input of the queue of inputs generated by the FrontEnd.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效。当然,您必须在与执行您要检查的评估的内核不同的内核中运行它。
This should work. Of course, you have to run it in a different kernel than the one that is performing the evaluation you want to check for.
显然,最好使用
Monitor
等工具预先进行设置。例如,将允许您观察索引变量
i
的进度。如果您事先没有进行设置,则可以使用“评估”菜单下的“中断评估”按钮执行某些操作。例如,请尝试以下操作:现在,等待六秒或更长时间,然后选择“中断评估”。然后,您可以检查
i
的状态,看看它走了多远。您可以使用“调试器控件”下的“继续”来恢复评估。Obviously, it's best to set things up before hand using a tool like
Monitor
. For example,will allow you to observe the progress of the index variable
i
. If you haven't set things up before hand, you might be able to do something using the "Interrupt Evaluation" button under the Evaluation menu. For example, try the following:Now, wait six or more seconds and then select "Interrupt Evaluation". You can then examine the state of
i
to see how far along it is. You resume evaluation using Continue under "Debugger Controls".