summaryrefslogtreecommitdiff
path: root/util/plot_dram/lowp_dram_sweep_plot.py
blob: 469e8d1832cf9dd2eaa7df08b70fba55aa1a639d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#! /usr/bin/python
#
# Copyright (c) 2017 ARM Limited
# All rights reserved
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder.  You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Radhika Jagtap

import PlotPowerStates as plotter
import argparse
import os
from subprocess import call

parser = argparse.ArgumentParser(formatter_class=
                                 argparse.ArgumentDefaultsHelpFormatter)

parser.add_argument("--statsfile", required=True, help="stats file path")

parser.add_argument("--bankutils", default="b1 b2 b3", help="target bank " \
                    "utilization values separated by space, e.g. \"1 4 8\"")

parser.add_argument("--seqbytes", default="s1 s2 s3", help="no. of " \
                    "sequential bytes requested by each traffic gen request." \
                    " e.g. \"64 256 512\"")

parser.add_argument("--delays", default="d1 d2 d3", help="string of delay"
                    " values separated by a space. e.g. \"1 20 100\"")

parser.add_argument("--outdir", help="directory to output plots",
                    default='plot_test')

parser.add_argument("--pdf", action='store_true', help="output Latex and pdf")

def main():
    args = parser.parse_args()
    if not os.path.isfile(args.statsfile):
        exit('Error! File not found: %s' % args.statsfile)
    if not os.path.isdir(args.outdir):
        os.mkdir(args.outdir)

    bank_util_list = args.bankutils.strip().split()
    seqbyte_list = args.seqbytes.strip().split()
    delays = args.delays.strip().split()
    plotter.plotLowPStates(args.outdir + '/', args.statsfile, bank_util_list,
                           seqbyte_list, delays)

    if args.pdf:
        textwidth = '0.5'

        ### Time and energy plots ###
        #############################
        # place tex and pdf files in outdir
        os.chdir(args.outdir)
        texfile_s = 'stacked_lowp_sweep.tex'
        print "\t", texfile_s
        outfile = open(texfile_s, 'w')

        startDocText(outfile)
        outfile.write("\\begin{figure} \n\centering\n")
        ## Time plots for all delay values
        for delay in delays:
            # Time
            filename = plotter.stateTimePlotName(str(delay) + '-')
            outfile.write(wrapForGraphic(filename, textwidth))
            outfile.write(getCaption(delay))
        outfile.write("\end{figure}\n")

        # Energy plots for all delay values
        outfile.write("\\begin{figure} \n\centering\n")
        for delay in delays:
            # Energy
            filename = plotter.stateEnergyPlotName(str(delay) + '-')
            outfile.write(wrapForGraphic(filename, textwidth))
            outfile.write(getCaption(delay))
        outfile.write("\end{figure}\n")

        endDocText(outfile)
        outfile.close()

        print "\n Generating pdf file"
        print "*******************************"
        print "\tpdflatex ", texfile_s
        # Run pdflatex to generate to pdf
        call(["pdflatex", texfile_s])
        call(["open", texfile_s.split('.')[0] + '.pdf'])


def getCaption(delay):
    return ('\caption{' +
            'itt delay = ' + str(delay) +
            '}\n')

def wrapForGraphic(filename, width='1.0'):
    # \t is tab and needs to be escaped, therefore \\textwidth
    return '\includegraphics[width=' + width + \
        '\\textwidth]{' + filename + '}\n'

def startDocText(outfile):

    start_stuff = '''
\documentclass[a4paper,landscape,twocolumn]{article}

\usepackage{graphicx}
\usepackage[margin=0.5cm]{geometry}
\\begin{document}
'''
    outfile.write(start_stuff)

def endDocText(outfile):

    end_stuff = '''

\end{document}

'''
    outfile.write(end_stuff)

# Call main
if __name__ == '__main__':
    main()