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 2020/02/15 00:39:54 UTC

[incubator-datasketches-cpp] branch updateReadme created (now cb74618)

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

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


      at cb74618  Update Readme

This branch includes the following new commits:

     new d8dc040  Add .o files to gitignore
     new 1b3f7aa  Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git
     new aa19c44  Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git
     new cb74618  Update Readme

The 4 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.



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


[incubator-datasketches-cpp] 03/04: Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git

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

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

commit aa19c443716e5344d7297af098c9011e00e8afab
Merge: 1b3f7aa bfcc54d
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Feb 14 16:38:02 2020 -0800

    Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git

 Makefile                              | 80 -----------------------------------
 common/Makefile                       | 44 -------------------
 common/common.mk                      | 46 --------------------
 config.mk                             | 65 ----------------------------
 cpc/cpc.mk                            | 67 -----------------------------
 cpc/test/compression_test.cpp         |  1 +
 fi/fi.mk                              | 48 ---------------------
 fi/include/reverse_purge_hash_map.hpp |  1 -
 hll/hll.mk                            | 48 ---------------------
 kll/include/kll_sketch.hpp            |  1 -
 kll/include/kll_sketch_impl.hpp       |  5 ---
 kll/kll.mk                            | 48 ---------------------
 theta/theta.mk                        | 48 ---------------------
 13 files changed, 1 insertion(+), 501 deletions(-)


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


[incubator-datasketches-cpp] 02/04: Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git

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

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

commit 1b3f7aa58e90e878b4c1d7b34f24c89db7f1e91f
Merge: d8dc040 7daba8e
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Mon Jan 20 17:01:31 2020 -0800

    Merge branch 'master' of git@github.com:apache/incubator-datasketches-cpp.git

 common/include/serde.hpp                           |   4 +-
 cpc/include/cpc_sketch.hpp                         |   3 +-
 fi/include/frequent_items_sketch.hpp               |   3 +-
 hll/include/HllSketch-internal.hpp                 |   2 +-
 hll/include/hll.hpp                                |  12 +-
 kll/CMakeLists.txt                                 |  11 +-
 kll/include/kll_helper.hpp                         | 267 +-----
 kll/include/kll_helper_impl.hpp                    | 319 +++++++
 kll/include/kll_quantile_calculator.hpp            | 163 +---
 kll/include/kll_quantile_calculator_impl.hpp       | 191 +++++
 kll/include/kll_sketch.hpp                         | 954 +--------------------
 .../{kll_sketch.hpp => kll_sketch_impl.hpp}        | 369 +-------
 kll/test/kll_sketch_validation.cpp                 |   6 +-
 theta/include/theta_sketch.hpp                     |   9 +-
 14 files changed, 609 insertions(+), 1704 deletions(-)


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


[incubator-datasketches-cpp] 04/04: Update Readme

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

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

commit cb74618adaa45b5a7caccb35c9a940ea212ca7c5
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Feb 14 16:39:32 2020 -0800

    Update Readme
---
 README.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/README.md b/README.md
index 0ec9984..77ce567 100644
--- a/README.md
+++ b/README.md
@@ -35,3 +35,14 @@ Building and running unit tests using cmake:
 	$ cmake ..
 	$ make
 	$ make test
+
+## How to Contact Us
+* We have two ASF [the-ASF.slack.com](http://the-ASF.slack.com) slack channels:
+    * datasketches -- general user questions
+    * datasketches-dev -- similar to our Apache [Developers Mail list](https://lists.apache.org/list.html?dev@datasketches.apache.org), except more interactive, but not as easily searchable.
+
+* For bugs and performance issues please subscribe: [Issues for datasketches-cpp](https://github.com/apache/incubator-datasketches-cpp/issues) 
+
+* For general questions about using the library please subscribe: [Users Mail List](https://lists.apache.org/list.html?users@datasketches.apache.org)
+
+* If you are interested in contributing please subscribe: [Developers Mail list](https://lists.apache.org/list.html?dev@datasketches.apache.org)
\ No newline at end of file


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


[incubator-datasketches-cpp] 01/04: Add .o files to gitignore

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

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

commit d8dc04061bc43e180ef3399133cde01046b4fafa
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Mon Dec 23 23:26:17 2019 -0800

    Add .o files to gitignore
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 11199c8..4303c9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,7 @@
 
 # Compiler output, build specific
 *.a
+*.o
 *.so
 *.dll
 *.dylib


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