source: doc/theses/mike_brooks_MMath/plots/list-1ord.py

Last change on this file was 4cf8832, checked in by Michael Brooks <mlbrooks@…>, 3 hours ago

Anticipated last new content for list perf analysis

  • Property mode set to 100644
File size: 1.2 KB
Line 
1import pandas as pd
2import numpy as np
3import os
4import sys
5
6sys.path.insert(0, os.path.dirname(__file__))
7from ListCommon import *
8
9sumFile = open( sys.argv[1], 'w' )
10detFile = open( sys.argv[2], 'w' )
11
12physicals = ['machine', 'SizeZone']
13ops = ['movement', 'polarity', 'accessor']
14fx = ['fx']
15bkgnd = ['NumNodes'] # never drilled/marginalized, always conditioned
16ignore = [ 'InterleaveFrac', # unused ever and always zero
17 'Width', # unused here and always one
18 'Length' ] # unused here and always =NumNodes
19
20# assure every explanation is classified
21assert( set( explanations )
22 - set( ignore )
23 ==
24 set(physicals) | set(ops) | set(fx) | set(bkgnd) )
25
26printHistos(
27 tgtMovement = 'all',
28 tgtPolarity = 'all',
29 tgtAccessor = 'all',
30 drillOn=physicals,
31 sumFile = sumFile,
32 detFile = detFile )
33
34printHistos(
35 tgtMovement = 'all',
36 tgtPolarity = 'all',
37 tgtAccessor = 'all',
38 drillOn=ops,
39 sumFile = sumFile,
40 detFile = detFile )
41
42printHistos(
43 tgtMovement = 'all',
44 tgtPolarity = 'all',
45 tgtAccessor = 'all',
46 drillOn=fx,
47 sumFile = sumFile,
48 detFile = detFile )
Note: See TracBrowser for help on using the repository browser.