summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-08-26 13:36:25 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2013-08-26 18:23:29 +0200
commit211b37c81c38da5a15f8b9e0eab46ae1a7d2bfeb (patch)
tree653ca90753a03f5a383787c68a33cfb7adc70942 /tools
parent235429dc6ab7fed49a457217eac9b19288971994 (diff)
docs: add gc1000 in marvell to gpus comparison
Diffstat (limited to 'tools')
-rw-r--r--tools/data/gpus.json23
-rwxr-xr-xtools/make_feature_comparison.py3
2 files changed, 25 insertions, 1 deletions
diff --git a/tools/data/gpus.json b/tools/data/gpus.json
index 02f6b58..7082499 100644
--- a/tools/data/gpus.json
+++ b/tools/data/gpus.json
@@ -214,6 +214,29 @@
"numVaryings": "8",
"superTileLayout": "0"
}]
+ },
+ {
+ "platform": "Marvell Armada 1500",
+ "chips": [{
+ "type": "GC1000",
+ "chipModel": "0x1000",
+ "chipRevision": "0x5015",
+ "chipFeatures": "0xe0286eed",
+ "chipMinorFeatures": "0xc3799eff",
+ "chipMinorFeatures1": "0x2e13b2d9",
+ "chipMinorFeatures2": "0x00100000",
+ "chipMinorFeatures3": "0x00000000",
+ "streamCount": "4",
+ "registerMax": "64",
+ "threadCount": "512",
+ "shaderCoreCount": "2",
+ "vertexCacheSize": "8",
+ "vertexOutputBufferSize": "512",
+ "pixelPipes": "1",
+ "instructionCount": "256",
+ "numConstants": "0",
+ "bufferSize": "0"
+ }]
}
]
diff --git a/tools/make_feature_comparison.py b/tools/make_feature_comparison.py
index a0e4c3c..be034df 100755
--- a/tools/make_feature_comparison.py
+++ b/tools/make_feature_comparison.py
@@ -97,7 +97,8 @@ def main():
cur_row += 1
table.append(Cell(cur_row, 0, 'Specs', colspan=full_width, cls='category'))
- spec_fields = ["streamCount", "registerMax", "threadCount", "shaderCoreCount", "vertexCacheSize", "vertexOutputBufferSize"]
+ spec_fields = ["streamCount", "registerMax", "threadCount", "shaderCoreCount", "vertexCacheSize", "vertexOutputBufferSize",
+ "pixelPipes", "instructionCount", "numConstants", "bufferSize", "numVaryings", "superTileLayout"]
for (field) in spec_fields:
cur_row += 1
table.append(Cell(cur_row, 0, field, cls='subheader'))