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

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

[Octave-bug-tracker] [bug #61092] Tangible performance degradation on de


From: Rik
Subject: [Octave-bug-tracker] [bug #61092] Tangible performance degradation on dev between 6th July and 27th of August
Date: Thu, 2 Sep 2021 17:55:23 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36

Update of bug #61092 (project octave):

                  Status:               Need Info => Works For Me           

    _______________________________________________________

Follow-up Comment #4:

I can't reproduce this.  I used the attached script bm_61092.m shown below.


N = 100;  # number of trials (> 50 for Central Limit Theorem to apply)

bm = zeros (N, 1);   # pre-declare benchmark data array

## Run one inner loop to engage CPU frequency scaling
for i = 1:1e5
  x = i * 2;
  x = x .^ 2;
  x = x - 3 * x;
endfor

## Run benchmark
for j = 1:N
  tic ();
  for i = 1:1e5
    x = i * 2;
    x = x .^ 2;
    x = x - 3 * x;
  endfor
  bm(j) = toc ();
endfor

disp (mean (bm));
disp (std (bm));


Results are 


DEV : 9/2/21
mean = .177
std  = .009
-----------------------------------------------------------------
STABLE : 6.3.0
mean = .19
std  = .01
-----------------------------------------------------------------
DEV : 7/6/21
mean = .18
std  = .01


For 7/6/21 the actual changeset ID was 29857:0b01806bb663.

(file #51864)
    _______________________________________________________

Additional Item Attachment:

File name: bm_61092.m                     Size:0 KB
    <https://file.savannah.gnu.org/file/bm_61092.m?file_id=51864>



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?61092>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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