-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
# sim_utils | ||
`sim_utils` is a collection of utilities to analyze profiling data generated by simulators. | ||
`sim_utils` is a collection of utilities to analyze perf data generated by instruction-accurate simulators. | ||
|
||
* `test.py` is the pre-commit test. | ||
* Current supported simulator: Intel® SDE | ||
* Python: 3.9 (or higher), SDE: latest (9.38) | ||
* Requires: Python: 3.9 (or higher), SDE: latest (9.38 or higher) | ||
|
||
|
||
`sim_utils` is capable of analyzing any workload runnable on Intel® SDE, and amis to support QEMU too. | ||
Personally tested cpu2017, cpuv8, geekbench, coremark-pro and accel2023. | ||
|
||
*Usage*: | ||
* Run you workloads on SDE with the suggested command in `cpu2017_collector.py -h`. | ||
* Write and run a collector for your workloads to generate the CSV file to describe the mappings between files. `cpu2017_collector.py` gives an example. | ||
* Then run `copy_files.py`, `for_each.py`, `combine_global_csv.py`, `diff_csv_for_f_wrapper.py`. | ||
* `send_report.py` can help send the data by mail. | ||
|
||
|