You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by jm...@apache.org on 2022/08/16 08:30:51 UTC

[datasketches-cpp] branch master updated (a49759e -> 1774ce3)

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

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


    from a49759e  Merge pull request #295 from apache/catch_cmake
     new 35ae0fa  Mostly-ready serializaiton support for sketches of py::object types
     new 457296b  Consistent naming for serde classes, add serialization tests
     new 5618b42  maybe add improved error handling?
     new 5e320c5  Avoid moving item when &src == &dst to fix python issue. Remove unused ctor with incorret use of filled_data_, and tidy up use of that flag.
     new a9842cf  add <string> header
     new 1a925b7  avoid copying data to gap, just use std::swap
     new cdc774b  address review comments
     new 1774ce3  Merge pull request #297 from jmalkin/python_serde

The 1336 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:
 common/include/memory_operations.hpp               |   1 +
 python/CMakeLists.txt                              |   9 +-
 python/datasketches/PySerDe.py                     | 104 +++++++++++++++++++
 .../datasketches/__init__.py                       |  27 +----
 python/include/py_serde.hpp                        | 113 +++++++++++++++++++++
 python/pybind11Path.cmd                            |  18 ++++
 python/src/__init__.py                             |  18 +++-
 python/src/datasketches.cpp                        |  12 ++-
 python/src/py_serde.cpp                            | 111 ++++++++++++++++++++
 python/src/vo_wrapper.cpp                          |  61 ++++++++---
 python/tests/__init__.py                           |  16 +++
 python/tests/vo_test.py                            |  26 ++++-
 sampling/include/var_opt_sketch.hpp                |   3 +-
 sampling/include/var_opt_sketch_impl.hpp           |  33 ++----
 sampling/include/var_opt_union.hpp                 |   1 -
 15 files changed, 481 insertions(+), 72 deletions(-)
 create mode 100644 python/datasketches/PySerDe.py
 copy req/test/CMakeLists.txt => python/datasketches/__init__.py (60%)
 mode change 100755 => 100644
 create mode 100644 python/include/py_serde.hpp
 create mode 100644 python/src/py_serde.cpp


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