Cycles: Increase minimum target on x86 to SSE4.2

* Compile regular host code with SSE4.2
* Remove the SSE2 kernel, only the SSE4.2 and AVX2 kernel remain

Pull Request: https://projects.blender.org/blender/blender/pulls/118471
This commit is contained in:
Thomas Dinges
2024-02-26 14:49:19 +01:00
committed by Thomas Dinges
parent f9e8f2d857
commit 2b095c97fa
21 changed files with 46 additions and 283 deletions

View File

@@ -1,22 +0,0 @@
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
/* Optimized CPU kernel entry points. This file is compiled with SSE2
* optimization flags and nearly all functions inlined, while kernel.cpp
* is compiled without for other CPU's. */
#include "util/optimization.h"
#ifndef WITH_CYCLES_OPTIMIZED_KERNEL_SSE2
# define KERNEL_STUB
#else
/* SSE optimization disabled for now on 32 bit, see bug #36316. */
# if !(defined(__GNUC__) && (defined(i386) || defined(_M_IX86)))
# define __KERNEL_SSE2__
# endif
#endif /* WITH_CYCLES_OPTIMIZED_KERNEL_SSE2 */
#include "kernel/device/cpu/kernel.h"
#define KERNEL_ARCH cpu_sse2
#include "kernel/device/cpu/kernel_arch_impl.h"