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

@@ -66,7 +66,6 @@ static void debug_flags_sync_from_scene(BL::Scene b_scene)
/* Synchronize CPU flags. */
flags.cpu.avx2 = get_boolean(cscene, "debug_use_cpu_avx2");
flags.cpu.sse42 = get_boolean(cscene, "debug_use_cpu_sse42");
flags.cpu.sse2 = get_boolean(cscene, "debug_use_cpu_sse2");
flags.cpu.bvh_layout = (BVHLayout)get_enum(cscene, "debug_bvh_layout");
/* Synchronize CUDA flags. */
flags.cuda.adaptive_compile = get_boolean(cscene, "debug_use_cuda_adaptive_compile");