From cf4cef336f1a2950f4a964f2db3a446a944a7f50 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Tue, 13 Feb 2024 23:38:44 -0800 Subject: [PATCH] fix #112 - don't subset cpuinfo --- dlclive/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlclive/benchmark.py b/dlclive/benchmark.py index 4cb4fb1..1d53042 100644 --- a/dlclive/benchmark.py +++ b/dlclive/benchmark.py @@ -130,7 +130,7 @@ def get_system_info() -> dict: else: from cpuinfo import get_cpu_info - dev = [get_cpu_info()["brand"]] + dev = get_cpu_info() dev_type = "CPU" return {