From e43db734fa72a3fa1eefd955244b0ab44b42aa10 Mon Sep 17 00:00:00 2001 From: David Galiffi Date: Fri, 1 Nov 2024 15:26:34 -0400 Subject: [PATCH] Update VERSION to 3.0.0 (#457) * Update VERSION and README to 3.0.0 * Update version mismatch of profiling data to a warning. Signed-off-by: David Galiffi [ROCm/rocprofiler-compute commit: 152eff0df156d3984be722159501b73b7c3129e8] --- projects/rocprofiler-compute/README.md | 6 +++--- projects/rocprofiler-compute/VERSION | 2 +- projects/rocprofiler-compute/src/utils/specs.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/rocprofiler-compute/README.md b/projects/rocprofiler-compute/README.md index 217f394edf..36d4d7f5d8 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 = {ROCm/rocprofiler-compute: v2.1.0 (27 September 2024)}, - month = september, + title = {ROCm/rocprofiler-compute: v3.0.0 (01 November 2024)}, + month = November, year = 2024, publisher = {Zenodo}, - version = {v2.1.0}, + version = {v3.0.0}, doi = {10.5281/zenodo.7314631}, url = {https://doi.org/10.5281/zenodo.7314631} } diff --git a/projects/rocprofiler-compute/VERSION b/projects/rocprofiler-compute/VERSION index 7ec1d6db40..4a36342fca 100644 --- a/projects/rocprofiler-compute/VERSION +++ b/projects/rocprofiler-compute/VERSION @@ -1 +1 @@ -2.1.0 +3.0.0 diff --git a/projects/rocprofiler-compute/src/utils/specs.py b/projects/rocprofiler-compute/src/utils/specs.py index 4cbc55e5b3..2ea0b64bbc 100644 --- a/projects/rocprofiler-compute/src/utils/specs.py +++ b/projects/rocprofiler-compute/src/utils/specs.py @@ -93,7 +93,7 @@ def generate_machine_specs(args, sysinfo: dict = None): ) version = get_version(config.rocprof_compute_home)["version"] if sysinfo_ver != version[: version.find(".")]: - console_error( + console_warning( "Detected mismatch in sysinfo versioning. You need to reprofile to update data." ) return MachineSpecs(**sysinfo)