Pause for the better

A few days ago, blog reader Tomás Peyré commented on the fact that the pause function has a memory leak on R2011b and R2012a, and advised using the Java Thread.sleep() function instead. This got me started on a comparison between these seemingly-equivalent functions. It turns out that the Java variant not only does not leak memory like its Matlab counterpart pause – the Java function is also much more accurate in its pause duration.

Testing the pause accuracy is quite simple: Simply pause a pre-defined duration and measure the actual time span. I run this 100 times to get some meaningful statistics. Note that the only difference between the loops below is the pause function that is being used (see highlighted rows):

% Some initializations
timesToRun = 100;
duration = 0.25;  % [secs]
 
% Measure Matlab's pause() accuracy
tPause(timesToRun) = 0;  % pre-allocate
for idx = 1 : timesToRun
   tic
   pause(duration);                        % Note: pause() accepts [Secs] duration   tPause(idx) = abs(toc-duration);
end
 
% Measure Java's sleep() accuracy
tSleep(timesToRun) = 0;  % pre-allocate
for idx=1 : timesToRun
   tic
   java.lang.Thread.sleep(duration*1000);  % Note: sleep() accepts [mSecs] duration   tSleep(idx) = abs(toc-duration);
end

The results are consistent and conclusive:

Functionmedian inaccuracymean inaccuracymax inaccuracymax inaccuracy as % of total (250 mSec)
Matlab’s pause()2.0 mSec3.6 mSec12.8 mSec5.1%
Java’s Thread.sleep()0.01 mSec0.02 mSec0.53 mSec0.2%

When the pause duration is reduced to 50 mSecs (0.05 secs), the results are even more striking:

Functionmedian inaccuracymean inaccuracymax inaccuracymax inaccuracy as % of total (50 mSec)
Matlab’s pause()11.6 mSec12.5 mSec15.5 mSec31%
Java’s Thread.sleep()0.78 mSec0.77 mSec0.84 mSec1.7%

When the pause duration is further reduced, Matlab’s inaccuracies increase (120% at 0.01, 370% at 0.005) to a point where we cannot in practice rely on them. Apparently, Matlab’s pause function has an inherent inaccuracy of several mSecs that increases as the pause duration decreases. The effect of increasing absolute inaccuracy with decreasing total pause duration is catastrophic. On the other hand, Java’s inaccuracy remains stable at <1 mSec, making its relative inaccuracy degradation much more gradual and acceptable (8% at 0.01, 20% at 0.005).

Matlab’s pause function has an important side-effect, that may partly explain the discrepancy: Whenever pause is called, the graphics event queue (EDT) is flushed, thereby updating all Matlab figure windows. In my tests above I did not have any open figures, otherwise I suspect the discrepancy would only have been larger. This side effect is actually quite important when integrating Java GUI components in Matlab figures.

Java’s Thread.sleep function, like Matlab’s pause(), is not guaranteed to pause for the exact duration specified. However, as the above results clearly show, in practice the Java variant is much more accurate than Matlab’s. So if you want accurate and leak-free pauses, and do not need the EDT side-effect, I really see no reason to use Matlab’s pause. Sleep() over it…

Categories: Java, Low risk of breaking in future versions, Stock Matlab function

Tags: ,

Bookmark and SharePrint Print

17 Responses to Pause for the better

  1. the cyclist says:

    A couple comments:

    First, the results may be platform-dependent. Running R2012a on a Mac (OS X 10.6.8), I get more comparable inaccuracies for MATLAB and Java. Mean inaccuracy for MATLAB is about 0.38 msec, and Java is about 0.26 msec. Also, unlike your results, those inaccuracies are roughly constant when I reduce the input duration.

    Second, I notice that one does not need to take the absolute value as you did. The error is systematically positive. This is presumably because both MATLAB and Java choose to pause for at least the prescribed duration.

  2. Andrew says:

    Hi Yair,
    I have noticed that there are issues with MATLAB hanging up when using inputdlg and other modal dialog boxes. These issues are solved by putting a pause after the dialog box is closed. I’m assuming this has to do with the queue being flushed, as you mentioned. Is there a different way to deal with these issues other than using pause?
    Thanks!
    ~Andrew

    • Andrew says:

      It looks like using drawnow has the same effect.
      Thanks!
      ~Andrew

    • @Andrew – thanks for mentioning this. This is indeed the case, and quite possibly deserves a dedicated article because it is such a frustrating and common issue, that exists in many Matlab releases, and because the solution (adding a pause or drawnow) is so frustratingly simple and yet undocumented. As noted here, drawnow is similar but not exactly the same as pause. I often use both of them, since I found out by trial-and-error that different situations respond better to either of them, and I never remember which one to use… So I often have lines such as the following scattered around my code (I know it’s ugly, but it works and that’s what matters in the end):

      drawnow; pause(0.05);  % or reverse this order

      To your question, I do not know of any simpler or better way to solve these hangups.

  3. Ang says:

    Hi,

    Nice article!

    It turns out that I could handle an event during pause, but not when I use Thread.sleep.

    For example, it’s possible for an event handler to do something to interrupt the while loop here:

    global KeepRunning
    KeepRunning = true;
    while (KeepRunning)
      pause(.001)
      % It's possible for the event handler to change KeepRunning to false when an event is fired.
    end

    Yet, this is not possible when Thread.Sleep is used.

    global KeepRunning
    KeepRunning = true;
    while (KeepRunning)
      java.lang.Thread.sleep(1);
      % This loop will continue running, no chance is given to the event handler to do anything.
    end

    Do you experience the same thing? I’m using Windows 32-bit MATLAB. In any case, I’d like to try and see where I can put Thread.sleep for my future MATLAB programs.

    Regards,
    YA

  4. Marc says:

    The following patch worked for me to correct this memory (and windows handle!) leak on 2012b:
    http://www.mathworks.com/support/bugreports/819115

    Since the problem seems to be inside drawnow, using sleep+drawnow probably doesn’t help.

    • @Marc – thanks for sharing. According to the patch description, it is not directly related to pause, but perhaps the issues are somehow related.

    • Marc says:

      As far as I can see, pause() calls (a part of) drawnow to flush the queue. Interesting: with Process Explorer I found that pause() leaks semaphore handles as well as memory, so the flush probably forgets to clean up a semaphore object…

  5. Pingback: Solving a Matlab hang problem | Undocumented Matlab

  6. Pingback: Take a break, have a pause() | matlabideas

  7. Sometalk says:

    Have you rerun this benchmark more recently? I wonder if there have been any improvements in this space.

    • In recent Matlab releases, Matlab’s pause is no less (sometimes even more) accurate than Java’s Thread.sleep, with a consistent mean inaccuracy (overhead) of 0.1-0.2 ms and max inaccuracy of ~1ms, regardless of the pause duration. These values depend of course on the specific OS and CPU, so YMMV.

  8. Dima says:

    Hey Yair,
    As you said, in the new MATLAB versions the pause performs the same or even better for some pause duration. The interesting thing is that for time duration in between >1ms and <10ms Java's sleep performs better (see a table below) but for duration less than equal to 1ms MATLAB the opposite is true.
    Do you have any idea why is this?
    Also does it make any sense at all to measure pausing time for duration less than 1ms? (Can tic/toc give reliable values for this small time period?)
    ============================================================
    Pausing Time = 10ms :
    pause() : Median = 5.6129 Mean = 5.3252 Max = 12.1966
    sleep() : Median = 5.6125 Mean = 5.4652 Max = 14.849
    ============================================================
    Pausing Time = 7ms :
    pause() : Median = 8.6154 Mean = 7.7185 Max = 14.0192
    sleep() : Median = 0.3767 Mean = 0.60192 Max = 1.3815
    ============================================================
    Pausing Time = 5ms :
    pause() : Median = 10.6026 Mean = 8.8543 Max = 15.4677
    sleep() : Median = 0.38281 Mean = 0.57611 Max = 1.4071
    ============================================================
    Pausing Time = 1ms :
    pause() : Median = 0.0076145 Mean = 0.015155 Max = 0.31958
    sleep() : Median = 0.34215 Mean = 0.53122 Max = 1.5084
    ============================================================

Leave a Reply

Your email address will not be published. Required fields are marked *