From 796c495d0b41bb63f62220278bd4fdca323a463b Mon Sep 17 00:00:00 2001 From: colramos425 Date: Tue, 3 Jan 2023 16:25:06 -0600 Subject: [PATCH] Don't forget formatting... Signed-off-by: colramos425 --- src/utils/plot_roofline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"