chore(ci): support shortint layer name parsing in data extractor

This commit is contained in:
David Testé
2025-10-28 10:12:52 +01:00
committed by David Testé
parent f768fd1cdd
commit 67130646ad

View File

@@ -493,6 +493,8 @@ class BenchDetails:
else: else:
self.operation_name = "::".join(parts[1:-1]) self.operation_name = "::".join(parts[1:-1])
self.rust_type = parts[-1].partition("_mean")[0] self.rust_type = parts[-1].partition("_mean")[0]
case Layer.Shortint:
self.operation_name = parts[1]
case _: case _:
raise NotImplementedError( raise NotImplementedError(
f"layer '{self.layer}' not supported yet for name parsing" f"layer '{self.layer}' not supported yet for name parsing"