You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/11/13 22:38:06 UTC

[incubator-datasketches-characterization] branch master updated (798cc2b -> 0bb4bbe)

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

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


    from 798cc2b  update config files
     add 16721a2  tuple sketch and union timing
     add cbd7dcf  tuple sketch and union timing
     add 003ece5  results dir is in the repo
     add c76a4be  AoD sketch uptate time in Java
     add 5c07555  removed unused imports
     add 828ded8  array of doubles union speed
     add cc41b62  aod results
     add 74c86e3  theta and tuple sketch and union update time plots
     add bcc1ebe  aod timing
     new 0bb4bbe  Merge pull request #48 from apache/tuple_sketch

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:
 .gitignore                                         |   1 -
 ..._sketch_update.m => theta_sketch_update_time.m} |  43 ++-
 cpp/matlab/theta_union_update_time.m               |  41 +++
 cpp/results/aod_sketch_timing_lgk12_x8_gcc9.tsv    | 335 +++++++++++++++++++
 ...ion_timing_lgk12_32way_compact_trimmed_gcc9.tsv | 367 +++++++++++++++++++++
 .../tuple_sketch_timing_double_lgk12_x8_gcc9.tsv   | 335 +++++++++++++++++++
 ...ing_double_lgk12_32way_compact_trimmed_gcc9.tsv | 367 +++++++++++++++++++++
 cpp/src/main.cpp                                   |   5 +
 ...profile.cpp => tuple_sketch_timing_profile.cpp} |  33 +-
 ...profile.hpp => tuple_sketch_timing_profile.hpp} |   6 +-
 ..._profile.cpp => tuple_union_timing_profile.cpp} |  35 +-
 ..._profile.hpp => tuple_union_timing_profile.hpp} |   6 +-
 results/aod_sketch_update_timing_lgk12_x8.tsv      | 319 ++++++++++++++++++
 results/aod_union_update_timing_lgk12_32way.tsv    | 335 +++++++++++++++++++
 .../AodSketchUpdateSpeedProfile.java}              |  36 +-
 .../AodUnionUpdateSpeedProfile.java}               |  43 +--
 .../AodSketchUpdateSpeedJob.conf}                  |  11 +-
 .../AodUnionUpdateSpeedJob.conf}                   |   3 +-
 18 files changed, 2218 insertions(+), 103 deletions(-)
 copy cpp/matlab/{distinct_counting_sketch_update.m => theta_sketch_update_time.m} (57%)
 create mode 100644 cpp/matlab/theta_union_update_time.m
 create mode 100644 cpp/results/aod_sketch_timing_lgk12_x8_gcc9.tsv
 create mode 100644 cpp/results/aod_union_timing_lgk12_32way_compact_trimmed_gcc9.tsv
 create mode 100644 cpp/results/tuple_sketch_timing_double_lgk12_x8_gcc9.tsv
 create mode 100644 cpp/results/tuple_union_timing_double_lgk12_32way_compact_trimmed_gcc9.tsv
 copy cpp/src/{theta_sketch_timing_profile.cpp => tuple_sketch_timing_profile.cpp} (76%)
 copy cpp/src/{hll_sketch_timing_profile.hpp => tuple_sketch_timing_profile.hpp} (86%)
 copy cpp/src/{theta_union_timing_profile.cpp => tuple_union_timing_profile.cpp} (74%)
 copy cpp/src/{hll_sketch_timing_profile.hpp => tuple_union_timing_profile.hpp} (86%)
 create mode 100644 results/aod_sketch_update_timing_lgk12_x8.tsv
 create mode 100644 results/aod_union_update_timing_lgk12_32way.tsv
 copy src/main/java/org/apache/datasketches/characterization/{theta/ThetaUpdateSpeedProfile.java => tuple/AodSketchUpdateSpeedProfile.java} (65%)
 copy src/main/java/org/apache/datasketches/characterization/{theta/ThetaUnionUpdateSpeedProfile.java => tuple/AodUnionUpdateSpeedProfile.java} (51%)
 copy src/main/resources/{theta/ThetaSpeedJob.conf => tuple/AodSketchUpdateSpeedJob.conf} (83%)
 copy src/main/resources/{theta/ThetaUnionUpdateSpeedJob.conf => tuple/AodUnionUpdateSpeedJob.conf} (93%)


---------------------------------------------------------------------
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 #48 from apache/tuple_sketch

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

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

commit 0bb4bbe0b351c2e41c15c8b5261ef2f88804c6f9
Merge: 798cc2b bcc1ebe
Author: Alexander Saydakov <13...@users.noreply.github.com>
AuthorDate: Fri Nov 13 14:37:57 2020 -0800

    Merge pull request #48 from apache/tuple_sketch
    
    Tuple sketch

 .gitignore                                         |   1 -
 cpp/matlab/theta_sketch_update_time.m              |  38 +++
 cpp/matlab/theta_union_update_time.m               |  41 +++
 cpp/results/aod_sketch_timing_lgk12_x8_gcc9.tsv    | 335 +++++++++++++++++++
 ...ion_timing_lgk12_32way_compact_trimmed_gcc9.tsv | 367 +++++++++++++++++++++
 .../tuple_sketch_timing_double_lgk12_x8_gcc9.tsv   | 335 +++++++++++++++++++
 ...ing_double_lgk12_32way_compact_trimmed_gcc9.tsv | 367 +++++++++++++++++++++
 cpp/src/main.cpp                                   |   5 +
 cpp/src/tuple_sketch_timing_profile.cpp            | 110 ++++++
 cpp/src/tuple_sketch_timing_profile.hpp            |  34 ++
 cpp/src/tuple_union_timing_profile.cpp             | 151 +++++++++
 cpp/src/tuple_union_timing_profile.hpp             |  34 ++
 results/aod_sketch_update_timing_lgk12_x8.tsv      | 319 ++++++++++++++++++
 results/aod_union_update_timing_lgk12_32way.tsv    | 335 +++++++++++++++++++
 .../tuple/AodSketchUpdateSpeedProfile.java         |  76 +++++
 .../tuple/AodUnionUpdateSpeedProfile.java          |  84 +++++
 .../resources/tuple/AodSketchUpdateSpeedJob.conf   |  45 +++
 .../resources/tuple/AodUnionUpdateSpeedJob.conf    |  43 +++
 18 files changed, 2719 insertions(+), 1 deletion(-)


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