From bc60e8c1542ed5d4f0aa81e38bd6ffbcee2d272d Mon Sep 17 00:00:00 2001 From: Ignacio Date: Tue, 9 Oct 2018 18:11:21 -0700 Subject: [PATCH] Use our own parallel for by default to avoid dependencies. --- src/nvtt/TaskDispatcher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvtt/TaskDispatcher.h b/src/nvtt/TaskDispatcher.h index 168ba56..d3a698d 100644 --- a/src/nvtt/TaskDispatcher.h +++ b/src/nvtt/TaskDispatcher.h @@ -17,7 +17,7 @@ // Parallel Patterns Library (PPL) is part of Microsoft's concurrency runtime: // http://msdn.microsoft.com/en-us/library/dd504870.aspx #if NV_OS_WIN32 && _MSC_VER >= 1600 -#define HAVE_PPL 1 +//#define HAVE_PPL 1 #include #endif