tree: fd5ede29bb281e1f9af4f5f81dde3b678871447b [path history] [tgz]
  1. cmake/
  2. common/
  3. cpc/
  4. fi/
  5. hll/
  6. kll/
  7. python/
  8. theta/
  9. .gitignore
  10. .gitmodules
  11. CMakeLists.txt
  12. config.mk
  13. DISCLAIMER-WIP
  14. LICENSE
  15. Makefile
  16. MANIFEST.in
  17. NOTICE
  18. pyproject.toml
  19. README.md
  20. setup.py
README.md

This is a C++ version of the DataSketches core library. See Apache DataSketches home

Apache DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called “sketches” in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.

This code requires C++11. It was tested with GCC 4.8.5 (standard in RedHat at the time of this writing), GCC 8.2.0 and Apple LLVM version 10.0.1 (clang-1001.0.46.4)

This includes Python bindings. For the Python interface, see the README notes in the python subdirectory.