From 8a32d560560d53233e94832377fa5584e513f5b5 Mon Sep 17 00:00:00 2001 From: Patrick Mours Date: Fri, 10 Feb 2023 19:38:37 +0100 Subject: [PATCH] Tests: Fix device list of benchmark script only showing a single GPU Pull Request #104583 --- tests/performance/api/device.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/performance/api/device.py b/tests/performance/api/device.py index fb11c5948e6..1e0766cf72b 100644 --- a/tests/performance/api/device.py +++ b/tests/performance/api/device.py @@ -39,7 +39,6 @@ def get_gpu_device(args: None) -> List: if device.type == device_type: result.append({'type': device.type, 'name': device.name, 'index': index}) index += 1 - break return result