This is an automated email from the ASF dual-hosted git repository.
guanmingchiu pushed a change to branch dev-qdp
in repository https://gitbox.apache.org/repos/asf/mahout.git
from 6ca875d56 [QDP] Double-buffered pinned I/O pipeline and faster Parquet
decode (#751)
add 57f90e627 [QDP] Numpy IO support (#777)
No new revisions were added by this update.
Summary of changes:
qdp/Cargo.lock | 243 +++++
qdp/Cargo.toml | 3 +
qdp/qdp-core/Cargo.toml | 2 +
qdp/qdp-core/src/io.rs | 18 +
qdp/qdp-core/src/lib.rs | 33 +
qdp/qdp-core/src/readers/mod.rs | 2 +
qdp/qdp-core/src/readers/numpy.rs | 264 ++++++
qdp/qdp-core/tests/numpy.rs | 143 +++
qdp/qdp-python/benchmark/benchmark_numpy_io.py | 293 ++++++
qdp/qdp-python/pyproject.toml | 1 +
qdp/qdp-python/src/lib.rs | 30 +
qdp/qdp-python/tests/test_numpy.py | 145 +++
qdp/qdp-python/uv.lock | 1159 +++++++++++++++++++++++-
13 files changed, 2334 insertions(+), 2 deletions(-)
create mode 100644 qdp/qdp-core/src/readers/numpy.rs
create mode 100644 qdp/qdp-core/tests/numpy.rs
create mode 100644 qdp/qdp-python/benchmark/benchmark_numpy_io.py
create mode 100644 qdp/qdp-python/tests/test_numpy.py