From b4f089f6e7e2e0333f4aab7f5034de1ebd7cca80 Mon Sep 17 00:00:00 2001 From: German Andryeyev Date: Wed, 7 Dec 2022 11:56:56 -0500 Subject: [PATCH] SWDEV-353281 - Relax prof script validation Report a warning on HIP header mismatch Change-Id: Ib6fb32161b7de14881ef88cff6c95e6b432999db [ROCm/clr commit: 6d3b8d01061634996e1b616a1864b0c89a4b3928] --- projects/clr/hipamd/src/hip_prof_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/hipamd/src/hip_prof_gen.py b/projects/clr/hipamd/src/hip_prof_gen.py index 04e44f9506..6dc5247609 100755 --- a/projects/clr/hipamd/src/hip_prof_gen.py +++ b/projects/clr/hipamd/src/hip_prof_gen.py @@ -724,7 +724,7 @@ with open(OUTPUT, 'w') as f: generate_prof_header(f, api_map, api_callback_ids, opts_map) if not filecmp.cmp(INPUT, OUTPUT): - fatal("\"" + INPUT + "\" needs to be re-generated and checked-in with the current changes") + message("Warning: \"" + INPUT + "\" needs to be re-generated and checked-in with the current changes") # Successfull exit sys.exit(0)