From 2ada97a670beb696340ee6d0294462d90d744a8e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 22 Mar 2015 23:26:31 +0100 Subject: [PATCH] fireinfo: Don't declare AMD CPUs with HT as "Intel Hyper-Threading" --- templates/fireinfo/profile-detail.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/fireinfo/profile-detail.html b/templates/fireinfo/profile-detail.html index c5ec9067..e440b60f 100644 --- a/templates/fireinfo/profile-detail.html +++ b/templates/fireinfo/profile-detail.html @@ -70,7 +70,11 @@ {% end %} {% if profile.processor.uses_ht() %} - {{ _("using Intel Hyper-Threading Technology") }} + {% if profile.processor.vendor == "Intel" %} + {{ _("using Intel Hyper-Threading Technology") }} + {% else %} + {{ _("with %s logical cores") % profile.processor.core_count }} + {% end %} {% end %}

{% end %} -- 2.47.3