Changeset bb5b866 for doc/theses/mike_brooks_MMath/plots
- Timestamp:
- Sep 22, 2025, 2:51:09 PM (7 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 78bc398
- Parents:
- 1dec8f3
- Location:
- doc/theses/mike_brooks_MMath/plots
- Files:
-
- 3 edited
-
ListCommon.py (modified) (2 diffs)
-
list-zoomout-noshuf.gp (modified) (1 diff)
-
list-zoomout-shuf.gp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/plots/ListCommon.py
r1dec8f3 rbb5b866 9 9 from subprocess import Popen, PIPE 10 10 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 11 def getDataset( infile ): 19 12 # grep to remove lines that end in comma; these were error runs 20 13 with Popen("grep '[^,]$' " + infile, shell=True, stdout=PIPE) as process: … … 75 68 timings.loc[peerGroup.index, 'BaselineIntrlOpDurNs'] = baselineDur 76 69 timings['OpDurRelIntrl'] = timings['mean_op_dur_ns'] / timings['BaselineIntrlOpDurNs'] 70 71 return timings 72 73 def 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 ) 77 82 78 83 movements = timings['movement'].unique() -
doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp
r1dec8f3 rbb5b866 18 18 19 19 plot INDIR."/plot-list-zoomout-noshuf.dat" \ 20 i 2using 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, \ 21 21 '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \ 22 '' i 1using 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, \ 23 23 '' i 3 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \ 24 24 '' 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 18 18 19 19 plot INDIR."/plot-list-zoomout-shuf.dat" \ 20 i 2using 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, \ 21 21 '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \ 22 '' i 1using 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, \ 23 23 '' i 3 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \ 24 24 '' 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.