source: doc/theses/mike_brooks_MMath/plots/list-histo-rel-i-swift.py

Last change on this file was bf73608, checked in by Michael Brooks <mlbrooks@…>, 5 days ago

revisions to ll perf intro and graph formatting

  • 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
12
13printHistos(
14
15 tgtMovement = 'all',
16 tgtPolarity = 'all',
17 tgtAccessor = 'all',
18
19 earlyFilter = {'fx':['cfa-cfa', 'lq-tailq', 'lq-list', 'upp-upp'],
20 'movement':['stack'],
21 'polarity':['insfirst'],
22 'accessor':['allhead'],
23 'machine':['swift'] },
24
25 drillOn=['SizeZone', 'fx'],
26
27 marginalizeOn= list( set(explanations) - set(['NumNodes', 'SizeZone']) ),
28
29 sumFile = sumFile,
30 detFile = detFile )
31
32
33# same, but don't drill size zone
34printHistos(
35
36 tgtMovement = 'all',
37 tgtPolarity = 'all',
38 tgtAccessor = 'all',
39
40 earlyFilter = {'fx':['cfa-cfa', 'lq-tailq', 'lq-list', 'upp-upp'],
41 'movement':['stack'],
42 'polarity':['insfirst'],
43 'accessor':['allhead'],
44 'machine':['swift'] },
45
46 drillOn=['fx'],
47
48 marginalizeOn= list( set(explanations) - set(['NumNodes', 'SizeZone']) ),
49
50 sumFile = sumFile,
51 detFile = detFile )
Note: See TracBrowser for help on using the repository browser.