summaryrefslogtreecommitdiff
path: root/util/stats
diff options
context:
space:
mode:
authorLisa Hsu <hsul@eecs.umich.edu>2006-02-18 18:39:19 -0500
committerLisa Hsu <hsul@eecs.umich.edu>2006-02-18 18:39:19 -0500
commit6cf0ba84953b0c18fcd702197f3aec9cf8a33f2d (patch)
tree3a48a2ced9ee8b80210457d95bfa5453b9ad5e42 /util/stats
parent71bf22165acb4a330a98e183f96188daf49d078f (diff)
downloadgem5-6cf0ba84953b0c18fcd702197f3aec9cf8a33f2d.tar.xz
remove print statements
--HG-- extra : convert_revision : abd635034424eeb9685aea777440a02887ce81a6
Diffstat (limited to 'util/stats')
-rw-r--r--util/stats/barchart.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/stats/barchart.py b/util/stats/barchart.py
index ddb31be46..29d16db17 100644
--- a/util/stats/barchart.py
+++ b/util/stats/barchart.py
@@ -76,14 +76,12 @@ class BarChart(ChartOptions):
# bars.
if dim == 2:
self.chartdata = transpose([data], axes=(2,0,1))
- print shape(self.chartdata)
# If the input data is a 3d matrix, then it describes an array
# of groups of bars with each bar being an array of stacked
# values.
if dim == 3:
self.chartdata = transpose(data, axes=(1,2,0))
- print shape(self.chartdata)
def get_data(self):
return self.inputdata
@@ -207,7 +205,7 @@ class BarChart(ChartOptions):
if self.xsubticks is not None:
inner_axes.set_xticks(arange((cshape[0] + 1)*cshape[2])*width + 2*center)
self.xsubticks.append('')
- inner_axes.set_xticklabels(self.xsubticks * cshape[0], fontsize=8)
+ inner_axes.set_xticklabels(self.xsubticks * cshape[2], fontsize=8)
if self.legend is not None:
if dim == 1:
lbars = bars[0][0]