projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb4f838
)
Make vector params interact with proxies properly.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Wed, 2 Nov 2005 15:20:39 +0000
(10:20 -0500)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Wed, 2 Nov 2005 15:20:39 +0000
(10:20 -0500)
--HG--
extra : convert_revision :
a4067f07d71d2adc1ccbf4512a43ceee7b5cc3de
python/m5/config.py
patch
|
blob
|
history
diff --git
a/python/m5/config.py
b/python/m5/config.py
index 86acb75f8dc96103ca6c1d1bec1924ab49fd683a..33f3f584305cb001f6d9a908b6bdd3917f14d288 100644
(file)
--- a/
python/m5/config.py
+++ b/
python/m5/config.py
@@
-755,7
+755,7
@@
class ParamDesc(object):
class VectorParamValue(list):
def ini_str(self):
- return ' '.join([
str(v
) for v in self])
+ return ' '.join([
v.ini_str(
) for v in self])
def unproxy(self, base):
return [v.unproxy(base) for v in self]