diff options
| author | KunoiSayami <[email protected]> | 2022-02-17 13:28:17 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2022-02-17 13:28:17 +0800 |
| commit | e98fc6bf301bb3bf38aab4ccce51edc16953024b (patch) | |
| tree | 14982778788a6ce9e1268a0fe338c1f9a5e714ec /db/skiplist.cuh | |
| parent | 1e4c8faa097c5423604e343bf20745f57c81f2a9 (diff) | |
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"); |
