From d7a36d890760acb8f0460dd9cde9983f200eb091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 14 Jun 2021 16:33:01 -0400 Subject: [PATCH] util/cpu_detect: print num_L3_caches and num_cpu_mask_bits Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/util/u_cpu_detect.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/u_cpu_detect.c b/src/util/u_cpu_detect.c index 9aea9e798bb..df52ad4f4b2 100644 --- a/src/util/u_cpu_detect.c +++ b/src/util/u_cpu_detect.c @@ -849,6 +849,8 @@ util_cpu_detect_once(void) printf("util_cpu_caps.has_avx512bw = %u\n", util_cpu_caps.has_avx512bw); printf("util_cpu_caps.has_avx512vl = %u\n", util_cpu_caps.has_avx512vl); printf("util_cpu_caps.has_avx512vbmi = %u\n", util_cpu_caps.has_avx512vbmi); + printf("util_cpu_caps.num_L3_caches = %u\n", util_cpu_caps.num_L3_caches); + printf("util_cpu_caps.num_cpu_mask_bits = %u\n", util_cpu_caps.num_cpu_mask_bits); } }