GpuBTree
GpuBTree copied to clipboard
Concurrent operations support
Is there implemetation and test for concurrent operations support which is evaluated in Section 5.6 of your thesis?
Hi, I've been refactoring the code so I haven't added these yet, but it should be simple to add for the current supported operations (insert, query, and delete). Which operations are you looking for? also curious about the semantics you are looking for for these concurrent operations?
The concurrent operations that mixed operations (insert, query, delete) are processed in same kernel. I find your interface are only "insertKey","SearchKey" that only process same type of operations in one kernel. The concurrent semantics can be same with the statement in Section 5.6.
Okay, I'll add a test for that (this weekend hopefully).