summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2023-03-07 17:44:28 +0200
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2023-03-07 18:35:46 +0200
commitd6600f484056ed559801ed86fbe68469fa7ccc19 (patch)
tree93afc7213a48e755f59be23e8f572381feea39dd
parent555042b1bb04334683238275a2b4b5e91e0feb09 (diff)
report-fossils: report intel fragment SIMD 8/16/32 separately
We don't want to compare a FS16 to a FS8. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
-rwxr-xr-xreport-fossil.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/report-fossil.py b/report-fossil.py
index e458025..9f7b738 100755
--- a/report-fossil.py
+++ b/report-fossil.py
@@ -180,9 +180,9 @@ executables = {
'mesh': 'mesh',
'task': 'task',
'kernel': 'ks',
- 'SIMD8 fragment': 'fs',
- 'SIMD16 fragment': 'fs',
- 'SIMD32 fragment': 'fs',
+ 'SIMD8 fragment': 'fs.8',
+ 'SIMD16 fragment': 'fs.16',
+ 'SIMD32 fragment': 'fs.32',
'compute': 'cs',
'raygen' : 'rgen',
'any hit' : 'ahit',