A GPU B-Tree optimized for updates.
Muhammad A. Awad, Saman Ashkiani, Rob Johnson, Martín Farach-Colton, and John D. Owens. Engineering a High-Performance GPU B-Tree, In Proceedings of the 24th ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming, PPoPP 2019, pages 145–157, February 2019. [Link]
- Clone:
git clone https://github.com/owensgroup/GpuBTree.git
- Update the CMakeLists.txt with the GPU hardware architecture
mkdir build && cd build
cmake ..
make
The repository contains two sample driver code for build and query operations.
To test the code after building you can run: ./bin/test_map numberOfKeys
./bin/test_search numberOfKeys numberOfQueries
- 32-bit keys and values ranging between (0 to 2^31 - 2)
This code was tested on an NVIDIA Tesla K40c and Volta Titan V GPUs. Please open an issue if you find any bugs or if you have any questions. This issue contains the planned future additions to this repository.