You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some computationally intensive operations rely on the start_timer/end_timer macros to print the execution time employed for such operations. Nonetheless, if an error occurs, such operations might end before calling the end_timer macro, which would leave side effects on the state of the macro, which might affect how the timings of other profiled operations run concurrently are displayed. Therefore, we would need to check each instance of start_timer to ensure that end_timer is always called for any possible execution flow.
The text was updated successfully, but these errors were encountered:
Some computationally intensive operations rely on the
start_timer
/end_timer
macros to print the execution time employed for such operations. Nonetheless, if an error occurs, such operations might end before calling theend_timer
macro, which would leave side effects on the state of the macro, which might affect how the timings of other profiled operations run concurrently are displayed. Therefore, we would need to check each instance ofstart_timer
to ensure thatend_timer
is always called for any possible execution flow.The text was updated successfully, but these errors were encountered: