Skip to content

Commit f8ba6e7

Browse files
committed
fix: Add job tool metadata to instrumentation report
This is useful metadata for determining scheduler behaviour but was missed originally. Signed-off-by: Alex Jones <[email protected]>
1 parent d1f5f13 commit f8ba6e7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/dvsim/instrumentation/metadata.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class MetadataJobFragment(JobFragment):
2828
full_name: str
2929
job_type: str
3030
target: str
31+
tool: str
3132
dependencies: list[str]
3233
status: str
3334

@@ -59,6 +60,7 @@ def build_report_fragments(self) -> InstrumentationFragments | None:
5960
spec.full_name,
6061
spec.job_type,
6162
spec.target,
63+
spec.tool.name,
6264
spec.dependencies,
6365
status_str,
6466
)

0 commit comments

Comments
 (0)