Are there any speed/memory implications for using "always dbstop on error"?

3 次查看(过去 30 天)
I often find it handy to use the "Always dbstop on error" option for the debugger, but am wondering if there is any drawback in terms of speed and memory to always using this option. I have no particular reason to think that there is, but am just wondering if there is a reason, other than personal preference not to have this setting as the default in my startup.m file.

采纳的回答

Jan
Jan 2011-5-18
The JIT acceleration does not gain full speed in debug mode. With the JIT compilation the order of executions can be influenced, such that line-by-line debugging would lead to surprising results.
Therefore a breakpoint in the code slows down the execution measureable, 10% in some tests. The effects of "dbstop if error" are smaller, about 1 to 2% in my tests. But this is very near to the measurement accuracy. So I assume the benefits for debugging will top te drawback for the speed.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Debugging and Analysis 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by