diff --git a/projects/rocprofiler-compute/CHANGES b/projects/rocprofiler-compute/CHANGES index 74bc041c5b..52223bfc58 100644 --- a/projects/rocprofiler-compute/CHANGES +++ b/projects/rocprofiler-compute/CHANGES @@ -1,3 +1,12 @@ +Version 1.1.0-PR1 (13 Oct 2023) + + * standardize headers to use 'avg' instead of 'mean' + * add color code thresholds to standalone gui to match grafana + * modify kernel name shortener to use cpp_filt (#168) + * enable stochastic kernel dispatch selection (#183) + * patch grafana plugin module to address a known issue in the latest version (#186) + * enhanced communication between analyze mode kernel flags (#187) + Version 1.0.10 (22 Aug 2023) * critical patch for detection of llvm in rocm installs on SLURM systems diff --git a/projects/rocprofiler-compute/README.md b/projects/rocprofiler-compute/README.md index 346b7d9edd..a6f27ab1bd 100644 --- a/projects/rocprofiler-compute/README.md +++ b/projects/rocprofiler-compute/README.md @@ -50,11 +50,11 @@ style reference is provided below for convenience: Keith Lowery and Nicholas Curtis and Cristian Di Pietrantonio}, - title = {AMDResearch/omniperf: v1.0.10 (22 Aug 2023)}, - month = aug, + title = {AMDResearch/omniperf: v1.1.0-PR1 (13 Oct 2023)}, + month = oct, year = 2023, publisher = {Zenodo}, - version = {v1.0.10}, + version = {v1.1.0-PR1}, doi = {10.5281/zenodo.7314631}, url = {https://doi.org/10.5281/zenodo.7314631} } diff --git a/projects/rocprofiler-compute/grafana_plugins/omniperfData_plugin/package.json b/projects/rocprofiler-compute/grafana_plugins/omniperfData_plugin/package.json index d31f7c7c84..b7f66630a1 100644 --- a/projects/rocprofiler-compute/grafana_plugins/omniperfData_plugin/package.json +++ b/projects/rocprofiler-compute/grafana_plugins/omniperfData_plugin/package.json @@ -31,7 +31,7 @@ "mocha": "^7.1.2", "moment": "^2.24.0", "mongodb": "^3.5.7", - "statman-stopwatch": "^2.11.1" + "statman-stopwatch": "^2.18.0" }, "_comments": "Dependencies are not included as part of Omniperf. It's the user's responsibility to accept any licensing implications before building the project." } diff --git a/projects/rocprofiler-compute/src/utils/tty.py b/projects/rocprofiler-compute/src/utils/tty.py index 1e266704ce..0a38116f43 100644 --- a/projects/rocprofiler-compute/src/utils/tty.py +++ b/projects/rocprofiler-compute/src/utils/tty.py @@ -210,7 +210,6 @@ def show_all(args, runs, archConfigs, output): p.joinpath(table_id_str.replace(" ", "_") + ".csv"), index=False, ) - # Only show top N kernels (as specified in --max-kernel-num) in "Top Stats" section if type == "raw_csv_table" and ( table_config["source"] == "pmc_kernel_top.csv"