如何检查前端是否认为评估仍在运行?

发布于 2024-10-31 18:31:35 字数 414 浏览 1 评论 0原文

有没有办法以编程方式检查前端是否认为评估仍在运行? 或者甚至更好:有没有办法检查前端是否有一些待处理的输入要发送到内核?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

原野 2024-11-07 18:31:35

这应该有效。当然,您必须在与执行您要检查的评估的内核不同的内核中运行它。

NotebookEvaluatingQ[nb_] := (
 SelectionMove[nb, All, Notebook];
 Or @@ Map["Evaluating" /. # &, Developer`CellInformation[nb]]
)

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.

NotebookEvaluatingQ[nb_] := (
 SelectionMove[nb, All, Notebook];
 Or @@ Map["Evaluating" /. # &, Developer`CellInformation[nb]]
)
风苍溪 2024-11-07 18:31:35

显然,最好使用 Monitor 等工具预先进行设置。例如,

Monitor[
  Do[Pause[6], {i, 10}],
i]

将允许您观察索引变量i的进度。如果您事先没有进行设置,则可以使用“评估”菜单下的“中断评估”按钮执行某些操作。例如,请尝试以下操作:

Do[Pause[6], {i, 10}]

现在,等待六秒或更长时间,然后选择“中断评估”。然后,您可以检查 i 的状态,看看它走了多远。您可以使用“调试器控件”下的“继续”来恢复评估。

Obviously, it's best to set things up before hand using a tool like Monitor. For example,

Monitor[
  Do[Pause[6], {i, 10}],
i]

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:

Do[Pause[6], {i, 10}]

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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文