You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2019/11/21 00:17:34 UTC

[incubator-datasketches-characterization] branch master updated (2c14bfb -> e2e83af)

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

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


    from 2c14bfb  Merge pull request #19 from apache/UpdatePrintFunctions
     add 4c45695  partial migration of C++ code
     add 5e1c3b5  theta sketch timing
     add 68b1f3d  frequent items sketch timing and accuracy
     add a7aec2b  removed unused code
     add a796b45  reverted experimental code
     new e2e83af  Merge pull request #20 from apache/cpp_migration

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:
 cpp/src/cpc_sketch_timing_profile.cpp              | 115 +++++++++++++++
 .../src/cpc_sketch_timing_profile.hpp              |  16 ++-
 cpp/src/frequent_items_sketch_accuracy_profile.cpp | 158 +++++++++++++++++++++
 .../src/frequent_items_sketch_accuracy_profile.hpp |  16 ++-
 cpp/src/frequent_items_sketch_timing_profile.cpp   | 149 +++++++++++++++++++
 .../src/frequent_items_sketch_timing_profile.hpp   |  16 ++-
 cpp/src/job_profile.cpp                            |  95 +++++++++++++
 cpp/src/job_profile.hpp                            |  48 +++++++
 cpp/src/kll_accuracy_profile.cpp                   |  61 ++++++++
 .../src/kll_accuracy_profile.hpp                   |  17 ++-
 cpp/src/kll_merge_accuracy_profile.cpp             |  60 ++++++++
 .../src/kll_merge_accuracy_profile.hpp             |  16 ++-
 cpp/src/kll_sketch_accuracy_profile.cpp            |  47 ++++++
 .../src/kll_sketch_accuracy_profile.hpp            |  16 ++-
 cpp/src/kll_sketch_timing_profile.cpp              | 138 ++++++++++++++++++
 .../src/kll_sketch_timing_profile.hpp              |  16 ++-
 cpp/src/main.cpp                                   |  53 +++++++
 cpp/src/theta_sketch_timing_profile.cpp            | 103 ++++++++++++++
 .../src/theta_sketch_timing_profile.hpp            |  16 ++-
 cpp/src/zipf_distribution.cpp                      |  94 ++++++++++++
 cpp/src/zipf_distribution.hpp                      |  61 ++++++++
 21 files changed, 1279 insertions(+), 32 deletions(-)
 create mode 100644 cpp/src/cpc_sketch_timing_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/cpc_sketch_timing_profile.hpp (73%)
 create mode 100644 cpp/src/frequent_items_sketch_accuracy_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/frequent_items_sketch_accuracy_profile.hpp (71%)
 create mode 100644 cpp/src/frequent_items_sketch_timing_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/frequent_items_sketch_timing_profile.hpp (71%)
 create mode 100644 cpp/src/job_profile.cpp
 create mode 100644 cpp/src/job_profile.hpp
 create mode 100644 cpp/src/kll_accuracy_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/kll_accuracy_profile.hpp (69%)
 create mode 100644 cpp/src/kll_merge_accuracy_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/kll_merge_accuracy_profile.hpp (69%)
 create mode 100644 cpp/src/kll_sketch_accuracy_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/kll_sketch_accuracy_profile.hpp (69%)
 create mode 100644 cpp/src/kll_sketch_timing_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/kll_sketch_timing_profile.hpp (73%)
 create mode 100644 cpp/src/main.cpp
 create mode 100644 cpp/src/theta_sketch_timing_profile.cpp
 copy src/main/java/org/apache/datasketches/ProcessLine.java => cpp/src/theta_sketch_timing_profile.hpp (73%)
 create mode 100644 cpp/src/zipf_distribution.cpp
 create mode 100644 cpp/src/zipf_distribution.hpp


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


[incubator-datasketches-characterization] 01/01: Merge pull request #20 from apache/cpp_migration

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

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

View the commit online:
https://github.com/apache/incubator-datasketches-characterization/commit/e2e83af369be193eb9f494e913259bad72c9bfb9

commit e2e83af369be193eb9f494e913259bad72c9bfb9
Merge: 2c14bfb a796b45
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Wed Nov 20 16:17:25 2019 -0800

    Merge pull request #20 from apache/cpp_migration
    
    Cpp migration

 cpp/src/cpc_sketch_timing_profile.cpp              | 115 +++++++++++++++
 cpp/src/cpc_sketch_timing_profile.hpp              |  34 +++++
 cpp/src/frequent_items_sketch_accuracy_profile.cpp | 158 +++++++++++++++++++++
 cpp/src/frequent_items_sketch_accuracy_profile.hpp |  34 +++++
 cpp/src/frequent_items_sketch_timing_profile.cpp   | 149 +++++++++++++++++++
 cpp/src/frequent_items_sketch_timing_profile.hpp   |  34 +++++
 cpp/src/job_profile.cpp                            |  95 +++++++++++++
 cpp/src/job_profile.hpp                            |  48 +++++++
 cpp/src/kll_accuracy_profile.cpp                   |  61 ++++++++
 cpp/src/kll_accuracy_profile.hpp                   |  35 +++++
 cpp/src/kll_merge_accuracy_profile.cpp             |  60 ++++++++
 cpp/src/kll_merge_accuracy_profile.hpp             |  34 +++++
 cpp/src/kll_sketch_accuracy_profile.cpp            |  47 ++++++
 cpp/src/kll_sketch_accuracy_profile.hpp            |  34 +++++
 cpp/src/kll_sketch_timing_profile.cpp              | 138 ++++++++++++++++++
 cpp/src/kll_sketch_timing_profile.hpp              |  34 +++++
 cpp/src/main.cpp                                   |  53 +++++++
 cpp/src/theta_sketch_timing_profile.cpp            | 103 ++++++++++++++
 cpp/src/theta_sketch_timing_profile.hpp            |  34 +++++
 cpp/src/zipf_distribution.cpp                      |  94 ++++++++++++
 cpp/src/zipf_distribution.hpp                      |  61 ++++++++
 21 files changed, 1455 insertions(+)


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