├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── benchmark.cpp ├── diff_myers.py ├── diffcuda.cpp ├── diffcuda.h ├── genbench.py ├── kernel.cu ├── private.h ├── python.cpp ├── xdiffbench ├── CMakeLists.txt └── main.cpp ├── xxhash.c └── xxhash.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/benchmark.cpp -------------------------------------------------------------------------------- /diff_myers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/diff_myers.py -------------------------------------------------------------------------------- /diffcuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/diffcuda.cpp -------------------------------------------------------------------------------- /diffcuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/diffcuda.h -------------------------------------------------------------------------------- /genbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/genbench.py -------------------------------------------------------------------------------- /kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/kernel.cu -------------------------------------------------------------------------------- /private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/private.h -------------------------------------------------------------------------------- /python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/python.cpp -------------------------------------------------------------------------------- /xdiffbench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/xdiffbench/CMakeLists.txt -------------------------------------------------------------------------------- /xdiffbench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/xdiffbench/main.cpp -------------------------------------------------------------------------------- /xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/xxhash.c -------------------------------------------------------------------------------- /xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/src-d/diffcuda/HEAD/xxhash.h --------------------------------------------------------------------------------