-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace CLIF SbsWriter with pybind-based gcpp extension
Maintains compatibility with previous version. PiperOrigin-RevId: 696181603
- Loading branch information
1 parent
719699f
commit 5674c33
Showing
6 changed files
with
47 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#include <pybind11/pybind11.h> | ||
|
||
#include <exception> | ||
#include <stdexcept> | ||
#include <string> | ||
|
||
#include "absl/types/span.h" | ||
#include "compression/python/compression_clif_aux.h" | ||
#include "pybind11/numpy.h" | ||
#include "pybind11/pybind11.h" | ||
#include "pybind11/stl.h" | ||
|
||
using gcpp::SbsWriter; | ||
|
||
namespace py = pybind11; | ||
|
||
namespace { | ||
template <auto Func> | ||
void wrap_span(SbsWriter& writer, std::string name, py::array_t<float> data) { | ||
if (data.ndim() != 1 || data.strides(0) != sizeof(float)) { | ||
throw std::domain_error("Input array must be 1D and densely packed."); | ||
} | ||
std::invoke(Func, writer, name, absl::MakeSpan(data.data(0), data.size())); | ||
} | ||
} // namespace | ||
|
||
PYBIND11_MODULE(compression, m) { | ||
py::class_<SbsWriter>(m, "SbsWriter") | ||
.def(py::init<>()) | ||
// NOTE: Individual compression backends may impose constraints on the | ||
// array length, such as a minimum of (say) 32 elements. | ||
.def("insert", wrap_span<&SbsWriter::Insert>) | ||
.def("insert_nuq", wrap_span<&SbsWriter::InsertNUQ>) | ||
.def("insert_bf16", wrap_span<&SbsWriter::InsertBfloat16>) | ||
.def("insert_float", wrap_span<&SbsWriter::InsertFloat>) | ||
.def("add_scales", &SbsWriter::AddScales) | ||
.def("write", &SbsWriter::Write); | ||
} |