You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by ch...@apache.org on 2023/03/23 16:38:41 UTC

[datasketches-cpp] branch master updated (f5741c9 -> a360983)

This is an automated email from the ASF dual-hosted git repository.

charlie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git


    from f5741c9  Merge pull request #351 from FluorineDog/fix-cmake
     add 202cec1  Init count
     add 3db0413  Added update and test
     add e6c43ef  Resolved hashing issue and added estimation
     add 18bf5c9  Added bucket and hash suggestions
     add 2420daa  Templatized the constructor
     add 1c52218  Templatized the current impl
     add 9569299  Added weighted updates
     add cd19dbc  Added upper and lower bounds
     add 40f6d4e  Added merging
     add 14e23ae  Corrected hashing function and added explicit 2-wise independent hash
     add dce4b19  Tidy up before review
     add 1bbf772  Merge branch 'apache:master' into cpp-countmin
     add bb5b71a  Responded to Alex's initial feedback
     add c277edf  Revised merge per Alex's feedback
     add afb0085  Made functions return consts as per feedback
     add c4c1f0a  Reduced size of num hashes and added sketch table size check
     add 321d07e  Changed the order checks in constructor
     add c6c63c5  Added serialization scheme and renamed class members
     add bf058dc  Removing init throw test
     add e86e1db  Resolved the init-fail test case timing out on github by safer allocation
     add 7c7c345  Added serialization for vector of bytes
     add 91cb0f3  Fixed de/serialization and added header check
     add 0a797bf  Merge pull request #325 from c-dickens/cpp-countmin
     new a360983  Merge pull request #352 from apache/count-min-cpp

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                      |  41 ++--
 {quantiles => count}/CMakeLists.txt |  32 +--
 count/include/count_min.hpp         | 296 +++++++++++++++++++++++
 count/include/count_min_impl.hpp    | 457 ++++++++++++++++++++++++++++++++++++
 {req => count}/test/CMakeLists.txt  |  37 ++-
 count/test/count_min_test.cpp       | 286 ++++++++++++++++++++++
 6 files changed, 1094 insertions(+), 55 deletions(-)
 copy {quantiles => count}/CMakeLists.txt (59%)
 mode change 100755 => 100644
 create mode 100644 count/include/count_min.hpp
 create mode 100644 count/include/count_min_impl.hpp
 copy {req => count}/test/CMakeLists.txt (57%)
 mode change 100755 => 100644
 create mode 100644 count/test/count_min_test.cpp


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[datasketches-cpp] 01/01: Merge pull request #352 from apache/count-min-cpp

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

charlie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git

commit a360983cef29e7e8e0075e7000709942772a264f
Merge: f5741c9 0a797bf
Author: c-dickens <ch...@apache.org>
AuthorDate: Thu Mar 23 16:38:35 2023 +0000

    Merge pull request #352 from apache/count-min-cpp
    
    Count min cpp

 CMakeLists.txt                   |  41 ++--
 count/CMakeLists.txt             |  42 ++++
 count/include/count_min.hpp      | 296 +++++++++++++++++++++++++
 count/include/count_min_impl.hpp | 457 +++++++++++++++++++++++++++++++++++++++
 count/test/CMakeLists.txt        |  42 ++++
 count/test/count_min_test.cpp    | 286 ++++++++++++++++++++++++
 6 files changed, 1144 insertions(+), 20 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org