Changeset 4cf8832 for doc/theses/mike_brooks_MMath/plots
- Timestamp:
- Apr 17, 2026, 9:46:46 AM (2 months ago)
- Branches:
- master
- Children:
- 9e94c9f, cbd6b5c
- Parents:
- 99bc47b
- Location:
- doc/theses/mike_brooks_MMath/plots
- Files:
-
- 6 edited
-
ListCommon.py (modified) (7 diffs)
-
list-1ord.py (modified) (1 diff)
-
list-zoomout-noshuf-java.py (modified) (1 diff)
-
list-zoomout-noshuf-swift.py (modified) (1 diff)
-
list-zoomout-shuf-java.py (modified) (1 diff)
-
list-zoomout-shuf-swift.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/plots/ListCommon.py
r99bc47b r4cf8832 68 68 69 69 explanations = ['movement', 'polarity', 'accessor', 70 'NumNodes', 70 'NumNodes', 'Width', 'Length', 71 71 'SizeZone', # note fd: NumNodes -> SizeZone 72 72 'fx', … … 192 192 193 193 def getSingleResults( 194 dsname = 'general',194 dsnames = ['general'], 195 195 machines = allMachines, 196 196 *, … … 202 202 203 203 timings = pd.concat([ 204 getMachineDataset( dsname, m ) 204 getMachineDataset( d, m ) 205 for d in dsnames 205 206 for m in machines ]) 206 207 … … 287 288 288 289 def printManySummary(*, 289 dsname = 'general',290 dsnames = ['general'], 290 291 machines = allMachines, 291 292 metafileCore, … … 302 303 303 304 for op in metadata.itertuples(): 304 timings = getSingleResults(dsname , machines,305 timings = getSingleResults(dsnames, machines, 305 306 fxs=fxs, 306 307 tgtMovement = op.movement, … … 324 325 325 326 def printSingleDetail( 326 dsname = 'general',327 dsnames = ['general'], 327 328 machines = allMachines, 328 329 *, … … 336 337 337 338 338 timings = getSingleResults(dsname , machines,339 timings = getSingleResults(dsnames, machines, 339 340 fxs = fxs, 340 341 tgtMovement = tgtMovement, -
doc/theses/mike_brooks_MMath/plots/list-1ord.py
r99bc47b r4cf8832 13 13 ops = ['movement', 'polarity', 'accessor'] 14 14 fx = ['fx'] 15 bkgnd = ['NumNodes'] # never drilled/marginalized, always conditioned 15 bkgnd = ['NumNodes'] # never drilled/marginalized, always conditioned 16 ignore = [ 'InterleaveFrac', # unused ever and always zero 17 'Width', # unused here and always one 18 'Length' ] # unused here and always =NumNodes 16 19 20 # assure every explanation is classified 17 21 assert( set( explanations ) 18 - set( ['InterleaveFrac'] ) # unused and always zero22 - set( ignore ) 19 23 == 20 24 set(physicals) | set(ops) | set(fx) | set(bkgnd) ) -
doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf-java.py
r99bc47b r4cf8832 8 8 9 9 printSingleDetail( 10 dsname ='zoomout-noshuf',10 dsnames=['zoomout-noshuf'], 11 11 machines=['java'], 12 12 tgtMovement = 'stack', -
doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf-swift.py
r99bc47b r4cf8832 8 8 9 9 printSingleDetail( 10 dsname ='zoomout-noshuf',10 dsnames=['zoomout-noshuf'], 11 11 machines=['swift'], 12 12 tgtMovement = 'stack', -
doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf-java.py
r99bc47b r4cf8832 8 8 9 9 printSingleDetail( 10 dsname ='zoomout-shuf',10 dsnames=['zoomout-shuf'], 11 11 machines=['java'], 12 12 tgtMovement = 'stack', -
doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf-swift.py
r99bc47b r4cf8832 8 8 9 9 printSingleDetail( 10 dsname ='zoomout-shuf',10 dsnames=['zoomout-shuf'], 11 11 machines=['swift'], 12 12 tgtMovement = 'stack',
Note:
See TracChangeset
for help on using the changeset viewer.