Ignore:
Timestamp:
Sep 22, 2025, 2:51:09 PM (7 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master, stuck-waitfor-destruct
Children:
78bc398
Parents:
1dec8f3
Message:

LL perf: adjust configurations

Simplify doing a manual one-off run. Disable harness's iterators on "zoomout" plots. Remove cfa-strip and add lq-list for "zoomout" plots. Add more exploratory analyses.

Location:
doc/theses/mike_brooks_MMath/plots
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/plots/ListCommon.py

    r1dec8f3 rbb5b866  
    99from subprocess import Popen, PIPE
    1010
    11 def getSingleResults(infileLocal, *,
    12     tgtMovement = 'all',
    13     tgtPolarity = 'all',
    14     tgtAccessor = 'all',
    15     tgtInterleave = 0.0 ):
    16 
    17     infile = os.path.dirname(os.path.abspath(__file__)) + '/../benchmarks/list/' + infileLocal
    18 
     11def getDataset( infile ):
    1912    # grep to remove lines that end in comma; these were error runs
    2013    with Popen("grep '[^,]$' " + infile, shell=True, stdout=PIPE) as process:
     
    7568        timings.loc[peerGroup.index, 'BaselineIntrlOpDurNs'] = baselineDur
    7669    timings['OpDurRelIntrl'] = timings['mean_op_dur_ns'] / timings['BaselineIntrlOpDurNs']
     70
     71    return timings
     72
     73def getSingleResults(infileLocal, *,
     74    tgtMovement = 'all',
     75    tgtPolarity = 'all',
     76    tgtAccessor = 'all',
     77    tgtInterleave = 0.0 ):
     78
     79    infile = os.path.dirname(os.path.abspath(__file__)) + '/../benchmarks/list/' + infileLocal
     80
     81    timings = getDataset( infile )
    7782
    7883    movements = timings['movement'].unique()
  • doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp

    r1dec8f3 rbb5b866  
    1818
    1919plot INDIR."/plot-list-zoomout-noshuf.dat" \
    20        i 2 using 1:2 title "STL" with points lt rgb "forest-green"      pt  3 ps 1 lw 1, \
     20       i 1 using 1:2 title "STL" with points lt rgb "forest-green"      pt  3 ps 1 lw 1, \
    2121    '' i 0 using 1:2 title "intrusives" with points lt rgb "black"      pt  1 ps 1 lw 1, \
    22     '' i 1 using 1:2 notitle with points lt rgb "black"     pt  1 ps 1 lw 1, \
     22    '' i 2 using 1:2 notitle with points lt rgb "black"     pt  1 ps 1 lw 1, \
    2323    '' i 3 using 1:2 notitle with points lt rgb "black" pt  1 ps 1 lw 1, \
    2424    '' i 4 using 1:2 notitle with points lt rgb "black" pt  1  ps 1 lw 1
  • doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp

    r1dec8f3 rbb5b866  
    1818
    1919plot INDIR."/plot-list-zoomout-shuf.dat" \
    20        i 2 using 1:2 title "STL" with points lt rgb "forest-green"      pt  3 ps 1 lw 1, \
     20       i 1 using 1:2 title "STL" with points lt rgb "forest-green"      pt  3 ps 1 lw 1, \
    2121    '' i 0 using 1:2 title "intrusives" with points lt rgb "black"      pt  1 ps 1 lw 1, \
    22     '' i 1 using 1:2 notitle with points lt rgb "black"     pt  1 ps 1 lw 1, \
     22    '' i 2 using 1:2 notitle with points lt rgb "black"     pt  1 ps 1 lw 1, \
    2323    '' i 3 using 1:2 notitle with points lt rgb "black" pt  1 ps 1 lw 1, \
    2424    '' i 4 using 1:2 notitle with points lt rgb "black" pt  1  ps 1 lw 1
Note: See TracChangeset for help on using the changeset viewer.