Are there any speed/memory implications for using "always dbstop on error"?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Akzeptierte Antwort
Jan
am 18 Mai 2011
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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Debugging and Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!