diff options
Diffstat (limited to 'db/skiplist.cuh')
| -rw-r--r-- | db/skiplist.cuh | 2 |
1 files changed, 1 insertions, 1 deletions
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<Key, Comparator>::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"); |
