output.py

来自「linux下基于c++的处理器仿真平台。具有处理器流水线」· Python 代码 · 共 156 行

PY
156
字号
class dbinfo(object):    def get(self, job, stat):        import info        run = info.source.allRunNames.get(job.name, None)        if run is None:            print 'run "%s" not found' % job            return None        stat.system = info.source[job.system]        info.display_run = run.run;        val = float(stat)        if val == 1e300*1e300:            return None        return valclass StatOutput(object):    def __init__(self, name, jobfile, stat=None, info=dbinfo(), binstats=None):        self.name = name        self.jobfile = jobfile        self.stat = stat        self.binstats = None        self.label = self.name        self.invert = False        self.info = info    def printdata(self, bin = None, printmode = 'G'):        import info        if bin:            print '%s %s stats' % (self.name, bin)        if self.binstats:            for stat in self.binstats:                stat.bins = bin        if printmode == 'G':            valformat = '%g'        elif printmode != 'F' and value > 1e6:            valformat = '%0.5e'        else:            valformat = '%f'        for job in self.jobfile.jobs():            value = self.info.get(job, self.stat)            if value is None:                return            if not isinstance(value, list):                value = [ value ]            if self.invert:                for i,val in enumerate(value):                    if val != 0.0:                        value[i] = 1 / val            valstring = ', '.join([ valformat % val for val in value ])            print '%-50s    %s' % (job.name + ':', valstring)    def display(self, binned = False, printmode = 'G'):        if binned and self.binstats:            self.printdata('kernel', printmode)            self.printdata('idle', printmode)            self.printdata('user', printmode)            self.printdata('interrupt', printmode)            print '%s total stats' % self.name        self.printdata(printmode=printmode)    def graph(self, graphdir):        from os.path import expanduser, join as joinpath        from barchart import BarChart        from matplotlib.numerix import Float, zeros        import re        confgroups = self.jobfile.groups()        ngroups = len(confgroups)        skiplist = [ False ] * ngroups        groupopts = None        baropts = None        groups = []        for i,group in enumerate(confgroups):            if group.flags.graph_group:                if groupopts is not None:                    raise AttributeError, \                          'Two groups selected for graph group'                groupopts = group.subopts()                skiplist[i] = True            elif group.flags.graph_bars:                if baropts is not None:                    raise AttributeError, \                          'Two groups selected for graph bars'                baropts = group.subopts()                skiplist[i] = True            else:                groups.append(group)        if groupopts is None:            raise AttributeError, 'No group selected for graph group'        if baropts is None:            raise AttributeError, 'No group selected for graph bars'        directory = expanduser(graphdir)        html = file(joinpath(directory, '%s.html' % self.name), 'w')        print >>html, '<html>'        print >>html, '<title>Graphs for %s</title>' % self.name        print >>html, '<body>'        for options in self.jobfile.options(groups):            data = zeros((len(groupopts), len(baropts)), Float)            data = [ [ None ] * len(baropts) for i in xrange(len(groupopts)) ]            enabled = False            stacked = None            for g,gopt in enumerate(groupopts):                for b,bopt in enumerate(baropts):                    job = self.jobfile.job(options + [ gopt, bopt ])                                            val = self.info.get(job, self.stat)                    if val is None:                        val = 0.0                    curstacked = isinstance(val, (list, tuple))                    if stacked is None:                        stacked = curstacked                    else:                        if stacked != curstacked:                            raise ValueError, "some stats stacked, some not"                    data[g][b] = val            bar_descs = [ opt.desc for opt in baropts ]            group_descs = [ opt.desc for opt in groupopts ]            if stacked:                legend = self.info.rcategories            else:                legend = bar_descs            chart = BarChart(data=data, xlabel='Benchmark', ylabel=self.label,                             legend=legend, xticks=group_descs)            chart.graph()            names = [ opt.name for opt in options ]            descs = [ opt.desc for opt in options ]                        filename =  '%s-%s.png' % (self.name, ':'.join(names))            desc = ' '.join(descs)            filepath = joinpath(directory, filename)            chart.savefig(filepath)            filename = re.sub(':', '%3A', filename)            print >>html, '''%s<br><img src="%s"><br>''' % (desc, filename)        print >>html, '</body>'        print >>html, '</html>'        html.close()

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?