From e98fc6bf301bb3bf38aab4ccce51edc16953024b Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Thu, 17 Feb 2022 13:28:17 +0800 Subject: --- db/skiplist.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db/skiplist.cuh') diff --git a/db/skiplist.cuh b/db/skiplist.cuh index 3f7b7e9..2501af8 100644 --- a/db/skiplist.cuh +++ b/db/skiplist.cuh @@ -453,7 +453,7 @@ __device__ void SkipList::Insert(const Key& key) { // NoBarrier_SetNext() suffices since we will add a barrier when // we publish a pointer to "x" in prev[i]. while (true) { - assert(prev[i]->key < key); + //assert(prev[i]->key < key); if (prev[i]->SetNextSafe(i, x)) break; //printf("failed\n"); -- cgit v1.3.1