diff options
Diffstat (limited to 'main.cu')
| -rw-r--r-- | main.cu | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -62,8 +62,8 @@ Conference on Parallel and Distributed Systems, December 2012. ***************************************************************************************/ -//#include"cutil.h" // Comment this if cutil.h is not available -#include "cuda_runtime.h" +// #include"cutil.h" // Comment this if cutil.h is not available +// #include "cuda_runtime.h" #include <algorithm> #include <cassert> #include <cstdio> @@ -86,7 +86,7 @@ typedef unsigned int LL; #endif #define MEASURE_TIME -//#define MEASURE_ACCESS +// #define MEASURE_ACCESS #if (defined(MEASURE_ACCESS) && defined(MEASURE_TIME)) #error "Shouldn't define MEASURE_TIME and MEASURE_ACCESS at the same time" @@ -98,11 +98,11 @@ typedef unsigned int LL; #endif // Maximum level of a node in the skip list -//#define MAX_LEVEL 32 +// #define MAX_LEVEL 32 constexpr size_t MAX_LEVEL = 16; // Number of threads per block -//#define NUM_THREADS 512 +// #define NUM_THREADS 512 constexpr size_t NUM_THREADS = 512; constexpr size_t NUM_ITEMS = BUILD_SIZE; |
