From ca6376bbaaa74e60bd4edaaf16e49b4a4b0e22ab Mon Sep 17 00:00:00 2001 From: XMRig Date: Wed, 14 Aug 2019 02:27:52 +0700 Subject: [PATCH] Hide AVX2 information from miner summary as not important (only need for cn/gpu). --- src/Summary.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Summary.cpp b/src/Summary.cpp index ab6b7b1e..227fdcc8 100644 --- a/src/Summary.cpp +++ b/src/Summary.cpp @@ -71,13 +71,12 @@ static void print_cpu(Config *) { const ICpuInfo *info = Cpu::info(); - Log::print(GREEN_BOLD(" * ") WHITE_BOLD("%-13s%s (%zu)") " %sx64 %sAES %sAVX2", + Log::print(GREEN_BOLD(" * ") WHITE_BOLD("%-13s%s (%zu)") " %sx64 %sAES", "CPU", info->brand(), info->packages(), info->isX64() ? GREEN_BOLD_S : RED_BOLD_S "-", - info->hasAES() ? GREEN_BOLD_S : RED_BOLD_S "-", - info->hasAVX2() ? GREEN_BOLD_S : RED_BOLD_S "-" + info->hasAES() ? GREEN_BOLD_S : RED_BOLD_S "-" ); # if defined(XMRIG_FEATURE_LIBCPUID) || defined (XMRIG_FEATURE_HWLOC) Log::print(WHITE_BOLD(" %-13s") BLACK_BOLD("L2:") WHITE_BOLD("%.1f MB") BLACK_BOLD(" L3:") WHITE_BOLD("%.1f MB")