.gitignore
.pre-commit-config.yaml
CONTRIBUTING.md
README.md
pyproject.toml
.github/workflows/docs.yml
.github/workflows/linting.yml
.github/workflows/publish.yml
.github/workflows/tests.yml
docs/Makefile
docs/build.sh
docs/make.bat
docs/source/conf.py
docs/source/extensions.rst
docs/source/getting_started.rst
docs/source/index.rst
docs/source/tutorials.rst
docs/source/_static/DAG.svg
docs/source/_static/Partitions.svg
docs/source/_static/aggregation_execution_model.svg
docs/source/_static/async_execution.svg
docs/source/_static/partition_tree_structure.svg
docs/source/_static/pipeline_parallel.svg
docs/source/_technical/data_aggregators.rst
docs/source/_technical/data_augmentors.rst
docs/source/_technical/data_flow.rst
docs/source/_technical/data_processors.rst
docs/source/_tutorials/aggregator.nblink
docs/source/_tutorials/augmentor.nblink
docs/source/_tutorials/basics.nblink
docs/source/_tutorials/processor.nblink
docs/source/api/.gitkeep
notebooks/aggregator.ipynb
notebooks/augmentor.ipynb
notebooks/basics.ipynb
notebooks/processor.ipynb
src/hyped/__init__.py
src/hyped/__version__.py
src/hyped/ops.py
src/hyped/typing.py
src/hyped.egg-info/PKG-INFO
src/hyped.egg-info/SOURCES.txt
src/hyped.egg-info/dependency_links.txt
src/hyped.egg-info/requires.txt
src/hyped.egg-info/scm_file_list.json
src/hyped.egg-info/scm_version.json
src/hyped.egg-info/top_level.txt
src/hyped/common/__init__.py
src/hyped/common/_generic.py
src/hyped/common/_pyarrow.py
src/hyped/common/_pydantic.py
src/hyped/common/_worker.py
src/hyped/common/lazy_module.py
src/hyped/common/logging.py
src/hyped/common/utils.py
src/hyped/core/__init__.py
src/hyped/core/abc.py
src/hyped/core/builder.py
src/hyped/core/executor.py
src/hyped/core/flow.py
src/hyped/core/graph.py
src/hyped/core/module.py
src/hyped/core/optim.py
src/hyped/core/typing.py
src/hyped/core/utils.py
src/hyped/core/features/__init__.py
src/hyped/core/features/dtypes.py
src/hyped/core/features/engine.py
src/hyped/core/features/features.py
src/hyped/core/features/mixins.py
src/hyped/core/features/reference.py
src/hyped/core/features/session.py
src/hyped/core/features/validators.py
src/hyped/core/nodes/__init__.py
src/hyped/core/nodes/aggregator.py
src/hyped/core/nodes/augmentor.py
src/hyped/core/nodes/base.py
src/hyped/core/nodes/collect.py
src/hyped/core/nodes/const.py
src/hyped/core/nodes/debug.py
src/hyped/core/nodes/processor.py
src/hyped/core/nodes/trace.py
src/hyped/core/ops/__init__.py
src/hyped/core/ops/boolean.py
src/hyped/core/ops/casting.py
src/hyped/core/ops/common.py
src/hyped/core/ops/debug.py
src/hyped/core/ops/mapping.py
src/hyped/core/ops/numeric.py
src/hyped/core/ops/sequence.py
src/hyped/core/ops/string.py
src/hyped/core/registry/__init__.py
src/hyped/core/registry/auto.py
src/hyped/core/registry/config.py
src/hyped/core/registry/registry.py
src/hyped/core/testing/__init__.py
src/hyped/core/testing/aggregator.py
src/hyped/core/testing/augmentor.py
src/hyped/core/testing/base.py
src/hyped/core/testing/processor.py
src/hyped/extensions/README.md
tests/__init__.py
tests/conftest.py
tests/hyped/__init__.py
tests/hyped/common/__init__.py
tests/hyped/common/test_generic.py
tests/hyped/common/test_lazy_module.py
tests/hyped/common/test_pyarrow.py
tests/hyped/common/test_utils.py
tests/hyped/common/test_worker.py
tests/hyped/core/__init__.py
tests/hyped/core/test_builder.py
tests/hyped/core/test_executor.py
tests/hyped/core/test_flow.py
tests/hyped/core/test_graph.py
tests/hyped/core/test_module.py
tests/hyped/core/test_optim.py
tests/hyped/core/test_utils.py
tests/hyped/core/utils.py
tests/hyped/core/features/__init__.py
tests/hyped/core/features/test_dtypes.py
tests/hyped/core/features/test_engine.py
tests/hyped/core/features/test_features.py
tests/hyped/core/features/test_session.py
tests/hyped/core/features/test_validators.py
tests/hyped/core/nodes/__init__.py
tests/hyped/core/nodes/test_aggregator.py
tests/hyped/core/nodes/test_augmenter.py
tests/hyped/core/nodes/test_base.py
tests/hyped/core/nodes/test_collect.py
tests/hyped/core/nodes/test_const.py
tests/hyped/core/nodes/test_processor.py
tests/hyped/core/nodes/test_trace.py
tests/hyped/core/ops/__init__.py
tests/hyped/core/ops/test_boolean.py
tests/hyped/core/ops/test_cast.py
tests/hyped/core/ops/test_common.py
tests/hyped/core/ops/test_debug.py
tests/hyped/core/ops/test_mapping.py
tests/hyped/core/ops/test_numeric.py
tests/hyped/core/ops/test_sequence.py
tests/hyped/core/ops/test_string.py
tests/hyped/core/registry/__init__.py
tests/hyped/core/registry/test_config.py
tests/hyped/core/registry/test_registry.py
tests/integration/__init__.py
tests/integration/test_aggregation.py
tests/integration/test_foreach.py
tests/integration/test_simple_ops.py