From 70af7c287739bc45089af9c36e6a41a2a317d61a Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Mon, 22 May 2023 19:42:05 +0800 Subject: feat: Add skiplist header Signed-off-by: KunoiSayami --- main.cu | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main.cu') diff --git a/main.cu b/main.cu index 5539991..7f1b27e 100644 --- a/main.cu +++ b/main.cu @@ -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 #include #include @@ -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; -- cgit v1.3.1