diff --git a/projects/rocprofiler-compute/src/utils/plot_roofline.py b/projects/rocprofiler-compute/src/utils/plot_roofline.py index d1d0958cc7..834d33455c 100644 --- a/projects/rocprofiler-compute/src/utils/plot_roofline.py +++ b/projects/rocprofiler-compute/src/utils/plot_roofline.py @@ -650,7 +650,12 @@ def empirical_roof(args): dtype = plot_roof(inputs, roof_data) # Also returns chosen dtype plot_application(inputs, args.verbose) - filename = IMGNAME + "_gpu-" + str(inputs["device"]) + "_{}".format(dtype) + ".pdf" + if inputs["device"] == -1: + dev_id="ALL" + else: + dev_id=str(inputs["device"]) + + filename = IMGNAME + "_gpu-" + dev_id + "_{}".format(dtype) + ".pdf" full_path = os.path.abspath(inputs["path"]) path_to_output = full_path + "/" + filename