summaryrefslogtreecommitdiffstats
path: root/thirdparty/embree/common/algorithms/parallel_reduce.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/embree/common/algorithms/parallel_reduce.h')
-rw-r--r--thirdparty/embree/common/algorithms/parallel_reduce.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/embree/common/algorithms/parallel_reduce.h b/thirdparty/embree/common/algorithms/parallel_reduce.h
index cd0078f2e6..51ec0a6405 100644
--- a/thirdparty/embree/common/algorithms/parallel_reduce.h
+++ b/thirdparty/embree/common/algorithms/parallel_reduce.h
@@ -43,7 +43,7 @@ namespace embree
template<typename Index, typename Value, typename Func, typename Reduction>
__forceinline Value parallel_reduce( const Index first, const Index last, const Index minStepSize, const Value& identity, const Func& func, const Reduction& reduction )
{
-#if defined(TASKING_INTERNAL)
+#if defined(TASKING_INTERNAL) && !defined(TASKING_TBB)
/* fast path for small number of iterations */
Index taskCount = (last-first+minStepSize-1)/minStepSize;