From e704a54dfef5e20e4478d4cee8fb2ce9838aa767 Mon Sep 17 00:00:00 2001
From: Sachin Salim <sachinksalim@gmail.com>
Date: Mon, 30 Oct 2023 21:52:24 -0400
Subject: [PATCH] py-cpuinfo compatibility: renamed brand field to brand_raw

---
 dlclive/benchmark.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlclive/benchmark.py b/dlclive/benchmark.py
index 4cb4fb1..6c1af9b 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()["brand_raw"]]
         dev_type = "CPU"
 
     return {