SWDEV-283962: (Workaround) preventing v1 from failing on application replay.
Change-Id: I11eacd61b51134a32e245ea2529b6e30615f6670
[ROCm/rocprofiler commit: 4c94003018]
This commit is contained in:
committed by
Giovanni Baraldi
parent
9b82a542a5
commit
cb7e35d9e4
@@ -275,7 +275,7 @@ def dump_csv(file_name):
|
||||
dispatch_number = entry["Index"]
|
||||
if ind != dispatch_number:
|
||||
fatal("Dispatch #" + ind + " index mismatch (" + dispatch_number + ")\n")
|
||||
val_list = [entry[var] for var in var_list]
|
||||
val_list = [entry[var] if (var in entry) else 'None' for var in var_list]
|
||||
fd.write(",".join(val_list) + "\n")
|
||||
|
||||
print("File '" + file_name + "' is generating")
|
||||
|
||||
Reference in New Issue
Block a user