From 53108b6ff1c5ea93bee9f8c5329c840e24f24a8d Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Tue, 9 Jul 2024 16:15:18 +0200 Subject: utils: tuning: Change Tuner.add() to accept a list of modules Change the first parameter of Tuner.add() to accept either a list of modules or a single module. This allows more compact code and is in sync with Tuner.set_output_order(). Signed-off-by: Stefan Klug Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder --- utils/tuning/libtuning/libtuning.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'utils/tuning/libtuning/libtuning.py') diff --git a/utils/tuning/libtuning/libtuning.py b/utils/tuning/libtuning/libtuning.py index e7c63535..bac57323 100644 --- a/utils/tuning/libtuning/libtuning.py +++ b/utils/tuning/libtuning/libtuning.py @@ -95,7 +95,10 @@ class Tuner(object): self.output = {} def add(self, module): - self.modules.append(module) + if isinstance(module, list): + self.modules.extend(module) + else: + self.modules.append(module) def set_input_parser(self, parser): self.parser = parser -- cgit v1.2.1