From e2846c999a43566a9068716abb1a2a732281e204 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 6 Jan 2016 20:04:25 +0500 Subject: [PATCH] Cycles: Fix stupid mistake which was assining kernel function in a loop --- intern/cycles/device/device_cpu.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/intern/cycles/device/device_cpu.cpp b/intern/cycles/device/device_cpu.cpp index 832f4d1c1fd..1b07ab6eca4 100644 --- a/intern/cycles/device/device_cpu.cpp +++ b/intern/cycles/device/device_cpu.cpp @@ -273,7 +273,6 @@ public: #endif #ifdef WITH_CYCLES_OPTIMIZED_KERNEL_AVX if(system_cpu_support_avx()) - for(int y = task.y; y < task.y + task.h; y++) convert_to_half_float_kernel = kernel_cpu_avx_convert_to_half_float; else #endif