util: add support for detecting avx512 vector bit size

Default to 256 until we're confident llvmpipe with 512 is
as correct and not slower than 256

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17813>
This commit is contained in:
Yonggang Luo
2022-08-30 14:57:26 +08:00
committed by Marge Bot
parent d240fb150f
commit 0244b1858f
2 changed files with 8 additions and 2 deletions
+5 -1
View File
@@ -28,6 +28,7 @@
#include "pipe/p_config.h"
#include "pipe/p_compiler.h"
#include "util/macros.h"
#include "util/u_cpu_detect.h"
#include "util/u_debug.h"
#include "util/u_memory.h"
@@ -438,8 +439,11 @@ lp_build_init(void)
lp_set_target_options();
// Default to 256 until we're confident llvmpipe with 512 is as correct and not slower than 256
lp_native_vector_width = MIN2(util_get_cpu_caps()->max_vector_bits, 256);
lp_native_vector_width = debug_get_num_option("LP_NATIVE_VECTOR_WIDTH",
util_get_cpu_caps()->max_vector_bits);
lp_native_vector_width);
#ifdef PIPE_ARCH_PPC_64
/* Set the NJ bit in VSCR to 0 so denormalized values are handled as
+3 -1
View File
@@ -671,7 +671,9 @@ void check_max_vector_bits(void)
*/
util_cpu_caps.max_vector_bits = 128;
#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
if (util_cpu_caps.has_avx) {
if (util_cpu_caps.has_avx512f) {
util_cpu_caps.max_vector_bits = 512;
} else if (util_cpu_caps.has_avx) {
util_cpu_caps.max_vector_bits = 256;
}
#endif