Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,469 changes: 1,866 additions & 1,603 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion prereqs_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ git submodule update --init --recursive


# checkout out to particular commit
cd third_party/differential-privacy && git checkout e59bbcf86a5febcbbe6b2e5ebea37ee52457cf36 && \
cd third_party/differential-privacy && git checkout 1156a8c4a476cbe05d12b7e4146382dd1e6361ea && \
cd -
# renaming workspace.bazel to workspace
mv third_party/differential-privacy/cc/WORKSPACE.bazel third_party/differential-privacy/cc/WORKSPACE
Expand Down
2 changes: 1 addition & 1 deletion prereqs_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fi
git submodule update --init --recursive

# checkout out to particular commit
cd third_party/differential-privacy && git checkout e59bbcf86a5febcbbe6b2e5ebea37ee52457cf36 && \
cd third_party/differential-privacy && git checkout 1156a8c4a476cbe05d12b7e4146382dd1e6361ea && \
cd -
# renaming workspace.bazel to workspace
mv third_party/differential-privacy/cc/WORKSPACE.bazel third_party/differential-privacy/cc/WORKSPACE
Expand Down
1 change: 0 additions & 1 deletion src/bindings/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pybind_extension(
"@com_google_cc_differential_privacy//algorithms:order-statistics",
"@com_google_cc_differential_privacy//algorithms:partition-selection",
"@com_google_cc_differential_privacy//algorithms:quantile-tree",
"@com_google_cc_differential_privacy//base:logging",
"@com_google_cc_differential_privacy//base:percentile",
"@com_google_cc_differential_privacy//proto:util-lib",
],
Expand Down
44 changes: 0 additions & 44 deletions src/bindings/PyDP/base/logging.cpp

This file was deleted.

6 changes: 0 additions & 6 deletions src/bindings/PyDP/bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ using namespace std;

namespace py = pybind11;

// base
void init_base_logging(py::module &);

// bounded functions
void init_algorithms_bounded_functions(py::module &);
void init_algorithms_count(py::module &);
Expand Down Expand Up @@ -36,9 +33,6 @@ void init_mechanisms_mechanism(py::module &);
PYBIND11_MODULE(_pydp, m) {
m.doc() = "Google Differential Privacy python extension";

// Base
init_base_logging(m);

// Algorithms
auto malgorithms = m.def_submodule("_algorithms");
init_algorithms_bounded_functions(malgorithms);
Expand Down
2 changes: 1 addition & 1 deletion third_party/differential-privacy