From 85ca91d1b17db8cfa28e5450b1d4e13d52b61a95 Mon Sep 17 00:00:00 2001 From: mykeduong Date: Mon, 2 Feb 2026 18:43:18 -0800 Subject: [PATCH] Fix: corrected typos in the JSON output Signed-off-by: David Addison --- src/util.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.cu b/src/util.cu index 5585a70..2772841 100644 --- a/src/util.cu +++ b/src/util.cu @@ -654,9 +654,9 @@ void writeResultFooter(const int errors[], const double bw[], double check_avg_b jsonKey("count"); jsonInt(errors[0]); jsonKey("okay"); jsonBool(errors[0] == 0); jsonFinishObject(); - jsonKey("average_bus_bandwidith"); + jsonKey("average_bus_bandwidth"); jsonStartObject(); - jsonKey("bandwidith"); jsonDouble(bw[0]); + jsonKey("bandwidth"); jsonDouble(bw[0]); jsonKey("okay"); check_avg_bw == -1 ? jsonStr("unchecked") : jsonBool(bw[0] >= check_avg_bw*(0.9)); jsonFinishObject(); }