diff --git a/src/utils/plot_roofline.py b/src/utils/plot_roofline.py index 834d33455c..a6e9d2da23 100644 --- a/src/utils/plot_roofline.py +++ b/src/utils/plot_roofline.py @@ -651,9 +651,9 @@ def empirical_roof(args): plot_application(inputs, args.verbose) if inputs["device"] == -1: - dev_id="ALL" + dev_id = "ALL" else: - dev_id=str(inputs["device"]) + dev_id = str(inputs["device"]) filename = IMGNAME + "_gpu-" + dev_id + "_{}".format(dtype) + ".pdf"