octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #53713] test failure "speed.m" in Octave 4.3.9


From: Mike Miller
Subject: [Octave-bug-tracker] [bug #53713] test failure "speed.m" in Octave 4.3.91
Date: Sun, 22 Apr 2018 15:21:45 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0

Follow-up Comment #3, bug #53713 (project octave):

So on your system, the following returns zero elapsed time?


t1 = time; sum (rand (1e5, 1)); t = time - t1


But this does not?


t1 = time; sum (rand (3e5, 1)); t = time - t1


What if you change this to use tic/toc, still zero?


t1 = tic; sum (rand (1e5, 1)); t = toc (t1)


I guess this is related to some minimum precision from system time values on
certain Windows systems?

On Windows 8 and newer, it should be possible to have time values with
microsecond precision, but on older systems it looks like the precision is
rounded to increments of about 16 milliseconds.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?53713>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]