Adding att v3 support (#84)

* Adding att v3 support

* misc fix

* bug fix

* Python linting workflow and rules

* fix regex

* Adding temporary args

* fix temporary args

* fix format

* remove att_perfcounters from test input

* Review comments (#163)

Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>

* Revert "Review comments (#163)"

This reverts commit 9ef0f8e5a4489d5581255e1b70ced2aef5c1c1d0.

* Address review comments 2

* review changes

* review comments

* review

* cmake alias

* review

* review

* review

* review

* Enabling percounter in v3 script

* review

* formatting

* formatting

---------

Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
Co-authored-by: Baraldi, Giovanni <Giovanni.Baraldi@amd.com>
Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>
This commit is contained in:
Nagaraj, Sriraksha
2025-02-04 04:05:38 -06:00
committed by GitHub
parent 72a27feb04
commit d4a51e4102
32 changed files with 2068 additions and 43 deletions
+5
View File
@@ -805,6 +805,11 @@ Properties
- **``pc_sampling_interval``** *(integer)*: pc sampling interval.
- **``pc-sampling-beta-enabled``** *(boolean)*: enable pc
sampling support; beta version.
- **``att_filenames``** *(object)*
- **``key``** *(integer)*: Dispatch id.
- **``value``** *(array)*: An array of ATT filenames.
- **``code_object_snapshot_filenames``** *(array)*: Code
object snapshot filename.
.. code-block:: shell
+18
View File
@@ -567,6 +567,24 @@
"pc_sample_comments": {
"type": "array",
"description": "Comments matching assembly instructions from pc_sample_instructions array. If debug symbols are available, comments provide instructions to source-line mapping. Otherwise, a comment is an empty string."
},
"att_filenames" : {
"type": "object",
"properties": {
"key": {
"type": "integer",
"description": "Dispatch id."
},
"value": {
"type": "array",
"description": "An array of ATT filenames."
}
}
},
"code_object_snapshot_filenames": {
"type": "array",
"description": "Code object snapshot filename"
}
}
},