From 071ed9be18c8f4665bc14bfa6470b99e29d47b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Tue, 28 Nov 2023 14:10:28 +0100 Subject: [PATCH] add missing read of iteration count to json task description reader --- benchmarks/task-data.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmarks/task-data.hpp b/benchmarks/task-data.hpp index 38be793..6550343 100644 --- a/benchmarks/task-data.hpp +++ b/benchmarks/task-data.hpp @@ -54,6 +54,7 @@ inline void to_json(nlohmann::json& j, const TaskData& a) { inline void from_json(const nlohmann::json& j, TaskData& a) { j["task"]["size"].get_to(a.size); + j["task"]["iterations"].get_to(a.rep_count); j["task"]["batching"]["batch_submit"].get_to(a.batch_submit); j["task"]["batching"]["batch_size"].get_to(a.batch_size); j["affinity"]["node"].get_to(a.numa_node);