corvic-engine 0.3.0rc61__tar.gz → 0.3.0rc62__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/Cargo.lock +33 -145
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/Cargo.toml +3 -3
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/PKG-INFO +1 -1
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/pyproject.toml +2 -2
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embed/node2vec.py +2 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/_transformations.py +3 -1
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/ops.py +38 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/sql/parse_ops.py +10 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/_planner.py +3 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/in_memory_executor.py +12 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/table/table.py +11 -1
- corvic_engine-0.3.0rc62/python/corvic_generated/orm/v1/table_pb2.py +253 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/table_pb2.pyi +12 -2
- corvic_engine-0.3.0rc61/python/corvic_generated/orm/v1/table_pb2.py +0 -251
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/LICENSE +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/README.md +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/Cargo.toml +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/expression_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/expression_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/expression_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/expression_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/priv/private_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/priv/private_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/priv/private_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/priv/private_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/validate_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/validate_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/validate_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/buf/validate/validate_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/context/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/context/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embed/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embed/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embedding_metric/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embedding_metric/embeddings.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/embedding_metric/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/engine/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/engine/_native.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/engine/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_base_model.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_completion_model.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_defaults.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_errors.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_feature_type.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_feature_view.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_pipeline.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_proto_orm_convert.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_resource.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_room.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_source.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/_space.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/model/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/_schema.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/aggregation.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/encoders.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/errors.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/feature_types.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/row_filters/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/row_filters/_jsonlogic.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/row_filters/_row_filters.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/sample_strategy.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/_proto_columns.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/base.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/errors.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/func/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/func/utc_func.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/func/uuid_func.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/ids.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/keys.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/mixins.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/orm/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/_const.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/_from_value.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/_temporal.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/_to_value.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/_types.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/pa_scalar/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/proto_wrapper/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/proto_wrapper/_errors.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/proto_wrapper/_wrappers.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/proto_wrapper/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/result/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/result/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/sql/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/sql/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/_dimension_reduction.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/_embedder.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/_image_embedder.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/_text_embedder.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/client.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/op_graph_executor.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/staging.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/storage.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/client.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/fs_blob_store.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/rdbms_blob_store.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system_sqlite/staging.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/table/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/table/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/version/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/version/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/well_known_types/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/well_known_types/py.typed +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/v1/graph_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/v1/graph_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/v1/graph_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/algorithm/graph/v1/graph_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/v1/models_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/v1/models_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/v1/models_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/embedding/v1/models_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/experiment_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/experiment_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/experiment_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/experiment_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/space_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/space_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/space_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v1/space_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/feature_view_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/feature_view_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/feature_view_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/feature_view_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/space_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/space_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/space_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/feature/v2/space_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v1/service_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v1/service_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v1/service_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v1/service_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/pipeline_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/pipeline_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/pipeline_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/pipeline_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/quick_mode_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/quick_mode_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/quick_mode_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/quick_mode_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/resource_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/resource_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/resource_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/resource_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/room_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/room_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/room_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/room_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/source_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/source_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/source_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/source_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/table_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/table_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/table_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/ingest/v2/table_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/v1alpha/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/v1alpha/models_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/v1alpha/models_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/v1alpha/models_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/model/v1alpha/models_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/agent_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/agent_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/agent_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/agent_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/common_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/common_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/common_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/common_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/completion_model_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/completion_model_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/completion_model_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/completion_model_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/feature_view_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/feature_view_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/feature_view_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/feature_view_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/pipeline_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/pipeline_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/pipeline_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/pipeline_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/space_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/space_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/space_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/space_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/table_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/orm/v1/table_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/__init__.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/event_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/event_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/event_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/event_pb2_grpc.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/service_pb2.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/service_pb2.pyi +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/service_pb2_grpc.py +0 -0
- {corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic_generated/status/v1/service_pb2_grpc.pyi +0 -0
@@ -8,12 +8,6 @@ version = "1.4.0"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
9
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
10
10
|
|
11
|
-
[[package]]
|
12
|
-
name = "bitflags"
|
13
|
-
version = "2.9.0"
|
14
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
-
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
16
|
-
|
17
11
|
[[package]]
|
18
12
|
name = "cfg-if"
|
19
13
|
version = "1.0.0"
|
@@ -22,7 +16,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
22
16
|
|
23
17
|
[[package]]
|
24
18
|
name = "corvic-engine"
|
25
|
-
version = "0.3.0-rc.
|
19
|
+
version = "0.3.0-rc.62"
|
26
20
|
dependencies = [
|
27
21
|
"numpy",
|
28
22
|
"pyo3",
|
@@ -63,16 +57,16 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
63
57
|
|
64
58
|
[[package]]
|
65
59
|
name = "engine-walk"
|
66
|
-
version = "0.3.0-rc.
|
60
|
+
version = "0.3.0-rc.62"
|
67
61
|
dependencies = [
|
68
62
|
"version_check",
|
69
63
|
]
|
70
64
|
|
71
65
|
[[package]]
|
72
66
|
name = "heck"
|
73
|
-
version = "0.
|
67
|
+
version = "0.5.0"
|
74
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
75
|
-
checksum = "
|
69
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
76
70
|
|
77
71
|
[[package]]
|
78
72
|
name = "indoc"
|
@@ -86,16 +80,6 @@ version = "0.2.171"
|
|
86
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
81
|
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
88
82
|
|
89
|
-
[[package]]
|
90
|
-
name = "lock_api"
|
91
|
-
version = "0.4.12"
|
92
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
-
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
94
|
-
dependencies = [
|
95
|
-
"autocfg",
|
96
|
-
"scopeguard",
|
97
|
-
]
|
98
|
-
|
99
83
|
[[package]]
|
100
84
|
name = "matrixmultiply"
|
101
85
|
version = "0.3.9"
|
@@ -117,14 +101,16 @@ dependencies = [
|
|
117
101
|
|
118
102
|
[[package]]
|
119
103
|
name = "ndarray"
|
120
|
-
version = "0.
|
104
|
+
version = "0.16.1"
|
121
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
-
checksum = "
|
106
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
123
107
|
dependencies = [
|
124
108
|
"matrixmultiply",
|
125
109
|
"num-complex",
|
126
110
|
"num-integer",
|
127
111
|
"num-traits",
|
112
|
+
"portable-atomic",
|
113
|
+
"portable-atomic-util",
|
128
114
|
"rawpointer",
|
129
115
|
]
|
130
116
|
|
@@ -157,9 +143,9 @@ dependencies = [
|
|
157
143
|
|
158
144
|
[[package]]
|
159
145
|
name = "numpy"
|
160
|
-
version = "0.
|
146
|
+
version = "0.24.0"
|
161
147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
-
checksum = "
|
148
|
+
checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
|
163
149
|
dependencies = [
|
164
150
|
"libc",
|
165
151
|
"ndarray",
|
@@ -167,6 +153,7 @@ dependencies = [
|
|
167
153
|
"num-integer",
|
168
154
|
"num-traits",
|
169
155
|
"pyo3",
|
156
|
+
"pyo3-build-config",
|
170
157
|
"rustc-hash",
|
171
158
|
]
|
172
159
|
|
@@ -177,34 +164,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
164
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
178
165
|
|
179
166
|
[[package]]
|
180
|
-
name = "
|
181
|
-
version = "
|
167
|
+
name = "portable-atomic"
|
168
|
+
version = "1.11.0"
|
182
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
-
checksum = "
|
184
|
-
dependencies = [
|
185
|
-
"lock_api",
|
186
|
-
"parking_lot_core",
|
187
|
-
]
|
170
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
188
171
|
|
189
172
|
[[package]]
|
190
|
-
name = "
|
191
|
-
version = "0.
|
173
|
+
name = "portable-atomic-util"
|
174
|
+
version = "0.2.4"
|
192
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
-
checksum = "
|
176
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
194
177
|
dependencies = [
|
195
|
-
"
|
196
|
-
"libc",
|
197
|
-
"redox_syscall",
|
198
|
-
"smallvec",
|
199
|
-
"windows-targets",
|
178
|
+
"portable-atomic",
|
200
179
|
]
|
201
180
|
|
202
|
-
[[package]]
|
203
|
-
name = "portable-atomic"
|
204
|
-
version = "1.11.0"
|
205
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
206
|
-
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
207
|
-
|
208
181
|
[[package]]
|
209
182
|
name = "proc-macro2"
|
210
183
|
version = "1.0.94"
|
@@ -216,15 +189,15 @@ dependencies = [
|
|
216
189
|
|
217
190
|
[[package]]
|
218
191
|
name = "pyo3"
|
219
|
-
version = "0.
|
192
|
+
version = "0.24.1"
|
220
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
194
|
+
checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
|
222
195
|
dependencies = [
|
223
196
|
"cfg-if",
|
224
197
|
"indoc",
|
225
198
|
"libc",
|
226
199
|
"memoffset",
|
227
|
-
"
|
200
|
+
"once_cell",
|
228
201
|
"portable-atomic",
|
229
202
|
"pyo3-build-config",
|
230
203
|
"pyo3-ffi",
|
@@ -234,9 +207,9 @@ dependencies = [
|
|
234
207
|
|
235
208
|
[[package]]
|
236
209
|
name = "pyo3-build-config"
|
237
|
-
version = "0.
|
210
|
+
version = "0.24.1"
|
238
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
-
checksum = "
|
212
|
+
checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
|
240
213
|
dependencies = [
|
241
214
|
"once_cell",
|
242
215
|
"target-lexicon",
|
@@ -244,9 +217,9 @@ dependencies = [
|
|
244
217
|
|
245
218
|
[[package]]
|
246
219
|
name = "pyo3-ffi"
|
247
|
-
version = "0.
|
220
|
+
version = "0.24.1"
|
248
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
-
checksum = "
|
222
|
+
checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
|
250
223
|
dependencies = [
|
251
224
|
"libc",
|
252
225
|
"pyo3-build-config",
|
@@ -254,9 +227,9 @@ dependencies = [
|
|
254
227
|
|
255
228
|
[[package]]
|
256
229
|
name = "pyo3-macros"
|
257
|
-
version = "0.
|
230
|
+
version = "0.24.1"
|
258
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
259
|
-
checksum = "
|
232
|
+
checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
|
260
233
|
dependencies = [
|
261
234
|
"proc-macro2",
|
262
235
|
"pyo3-macros-backend",
|
@@ -266,9 +239,9 @@ dependencies = [
|
|
266
239
|
|
267
240
|
[[package]]
|
268
241
|
name = "pyo3-macros-backend"
|
269
|
-
version = "0.
|
242
|
+
version = "0.24.1"
|
270
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
-
checksum = "
|
244
|
+
checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
|
272
245
|
dependencies = [
|
273
246
|
"heck",
|
274
247
|
"proc-macro2",
|
@@ -312,32 +285,11 @@ dependencies = [
|
|
312
285
|
"crossbeam-utils",
|
313
286
|
]
|
314
287
|
|
315
|
-
[[package]]
|
316
|
-
name = "redox_syscall"
|
317
|
-
version = "0.5.10"
|
318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
319
|
-
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
320
|
-
dependencies = [
|
321
|
-
"bitflags",
|
322
|
-
]
|
323
|
-
|
324
288
|
[[package]]
|
325
289
|
name = "rustc-hash"
|
326
|
-
version = "1.1
|
290
|
+
version = "2.1.1"
|
327
291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
328
|
-
checksum = "
|
329
|
-
|
330
|
-
[[package]]
|
331
|
-
name = "scopeguard"
|
332
|
-
version = "1.2.0"
|
333
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
335
|
-
|
336
|
-
[[package]]
|
337
|
-
name = "smallvec"
|
338
|
-
version = "1.14.0"
|
339
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
340
|
-
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
292
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
341
293
|
|
342
294
|
[[package]]
|
343
295
|
name = "syn"
|
@@ -352,9 +304,9 @@ dependencies = [
|
|
352
304
|
|
353
305
|
[[package]]
|
354
306
|
name = "target-lexicon"
|
355
|
-
version = "0.
|
307
|
+
version = "0.13.2"
|
356
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
309
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
358
310
|
|
359
311
|
[[package]]
|
360
312
|
name = "thread_local"
|
@@ -383,67 +335,3 @@ name = "version_check"
|
|
383
335
|
version = "0.9.5"
|
384
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
385
337
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
386
|
-
|
387
|
-
[[package]]
|
388
|
-
name = "windows-targets"
|
389
|
-
version = "0.52.6"
|
390
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
-
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
392
|
-
dependencies = [
|
393
|
-
"windows_aarch64_gnullvm",
|
394
|
-
"windows_aarch64_msvc",
|
395
|
-
"windows_i686_gnu",
|
396
|
-
"windows_i686_gnullvm",
|
397
|
-
"windows_i686_msvc",
|
398
|
-
"windows_x86_64_gnu",
|
399
|
-
"windows_x86_64_gnullvm",
|
400
|
-
"windows_x86_64_msvc",
|
401
|
-
]
|
402
|
-
|
403
|
-
[[package]]
|
404
|
-
name = "windows_aarch64_gnullvm"
|
405
|
-
version = "0.52.6"
|
406
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
408
|
-
|
409
|
-
[[package]]
|
410
|
-
name = "windows_aarch64_msvc"
|
411
|
-
version = "0.52.6"
|
412
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
413
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
414
|
-
|
415
|
-
[[package]]
|
416
|
-
name = "windows_i686_gnu"
|
417
|
-
version = "0.52.6"
|
418
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
420
|
-
|
421
|
-
[[package]]
|
422
|
-
name = "windows_i686_gnullvm"
|
423
|
-
version = "0.52.6"
|
424
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
425
|
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
426
|
-
|
427
|
-
[[package]]
|
428
|
-
name = "windows_i686_msvc"
|
429
|
-
version = "0.52.6"
|
430
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
431
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
432
|
-
|
433
|
-
[[package]]
|
434
|
-
name = "windows_x86_64_gnu"
|
435
|
-
version = "0.52.6"
|
436
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
438
|
-
|
439
|
-
[[package]]
|
440
|
-
name = "windows_x86_64_gnullvm"
|
441
|
-
version = "0.52.6"
|
442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
444
|
-
|
445
|
-
[[package]]
|
446
|
-
name = "windows_x86_64_msvc"
|
447
|
-
version = "0.52.6"
|
448
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
3
3
|
members = ["python"]
|
4
4
|
|
5
5
|
[workspace.package]
|
6
|
-
version = "0.3.0-rc.
|
6
|
+
version = "0.3.0-rc.62"
|
7
7
|
edition = "2021"
|
8
8
|
publish = false
|
9
9
|
|
@@ -12,9 +12,9 @@ arrow-array = { version = ">=41", default-features = false }
|
|
12
12
|
arrow-buffer = { version = ">=41", default-features = false }
|
13
13
|
arrow-data = { version = ">=41", default-features = false }
|
14
14
|
arrow-schema = { version = ">=41", default-features = false }
|
15
|
-
pyo3 = "0.
|
15
|
+
pyo3 = "0.24.1"
|
16
16
|
tikv-jemallocator = { version = "0.5.0" }
|
17
|
-
numpy = "0.
|
17
|
+
numpy = "0.24"
|
18
18
|
rayon = "1.8"
|
19
19
|
version_check = "0.9.4"
|
20
20
|
thread_local = "1.1.7"
|
@@ -20,7 +20,7 @@ authors = [
|
|
20
20
|
]
|
21
21
|
readme = "README.md"
|
22
22
|
description = "Seamless embedding generation and retrieval."
|
23
|
-
version = "0.3.0-rc.
|
23
|
+
version = "0.3.0-rc.62" # sync this with tool.poetry.version below
|
24
24
|
|
25
25
|
# TODO(ddn): Pull dependencies from tool.poetry.dependencies. We use maturin as
|
26
26
|
# the build system but poetry for the development environment.
|
@@ -74,7 +74,7 @@ packages = [
|
|
74
74
|
]
|
75
75
|
description = ""
|
76
76
|
authors = []
|
77
|
-
version = "0.3.0-rc.
|
77
|
+
version = "0.3.0-rc.62"
|
78
78
|
|
79
79
|
[tool.poetry.scripts]
|
80
80
|
check = "corvic_check.cli:main"
|
@@ -39,6 +39,8 @@ class KeyedVectors:
|
|
39
39
|
index_to_key: mapping of index to key struct
|
40
40
|
key_field_order: order of key struct fields used for index operations
|
41
41
|
"""
|
42
|
+
if dim <= 0:
|
43
|
+
raise InvalidArgumentError("number of dimensions must be positive")
|
42
44
|
self.dim = dim
|
43
45
|
self._index_to_key = index_to_key
|
44
46
|
self._key_field_order = key_field_order
|
{corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/op_graph/_transformations.py
RENAMED
@@ -73,7 +73,7 @@ def _replace_concat_op_source(
|
|
73
73
|
return op.concat(new_tables, concat_op.how)
|
74
74
|
|
75
75
|
|
76
|
-
def replace_op_source( # noqa: C901
|
76
|
+
def replace_op_source( # noqa: C901, PLR0915
|
77
77
|
root_op: op.Op, source_to_replace: op.Op, new_source: op.Op
|
78
78
|
) -> Ok[op.Op] | InvalidArgumentError:
|
79
79
|
for source in root_op.sources():
|
@@ -98,6 +98,8 @@ def replace_op_source( # noqa: C901
|
|
98
98
|
return new_source.select_columns(root_op.columns)
|
99
99
|
case op.LimitRows():
|
100
100
|
return new_source.limit_rows(root_op.num_rows)
|
101
|
+
case op.OffsetRows():
|
102
|
+
return new_source.offset_rows(root_op.num_rows)
|
101
103
|
case op.OrderBy():
|
102
104
|
return new_source.order_by(root_op.columns, desc=root_op.desc)
|
103
105
|
case op.FilterRows():
|
@@ -71,6 +71,7 @@ ProtoOp = (
|
|
71
71
|
| table_pb2.JoinOp
|
72
72
|
| table_pb2.SelectColumnsOp
|
73
73
|
| table_pb2.LimitRowsOp
|
74
|
+
| table_pb2.OffsetRowsOp
|
74
75
|
| table_pb2.OrderByOp
|
75
76
|
| table_pb2.FilterRowsOp
|
76
77
|
| table_pb2.DistinctRowsOp
|
@@ -162,6 +163,15 @@ def from_proto(
|
|
162
163
|
) -> LimitRows: ...
|
163
164
|
|
164
165
|
|
166
|
+
@overload
|
167
|
+
def from_proto(
|
168
|
+
proto: table_pb2.OffsetRowsOp,
|
169
|
+
parent_ops: list[Op] | None = None,
|
170
|
+
*,
|
171
|
+
skip_validate: bool = False,
|
172
|
+
) -> OffsetRows: ...
|
173
|
+
|
174
|
+
|
165
175
|
@overload
|
166
176
|
def from_proto(
|
167
177
|
proto: table_pb2.OrderByOp,
|
@@ -490,6 +500,8 @@ def from_proto( # noqa: C901, PLR0915
|
|
490
500
|
proto = table_pb2.TableComputeOp(select_columns=proto)
|
491
501
|
case table_pb2.LimitRowsOp():
|
492
502
|
proto = table_pb2.TableComputeOp(limit_rows=proto)
|
503
|
+
case table_pb2.OffsetRowsOp():
|
504
|
+
proto = table_pb2.TableComputeOp(offset_rows=proto)
|
493
505
|
case table_pb2.OrderByOp():
|
494
506
|
proto = table_pb2.TableComputeOp(order_by=proto)
|
495
507
|
case table_pb2.FilterRowsOp():
|
@@ -992,6 +1004,12 @@ class _Base(OneofProtoWrapper[table_pb2.TableComputeOp], ABC):
|
|
992
1004
|
proto = table_pb2.LimitRowsOp(source=self._proto, num_rows=num_rows)
|
993
1005
|
return Ok(from_proto(proto, skip_validate=True))
|
994
1006
|
|
1007
|
+
def offset_rows(self, num_rows: int) -> InvalidArgumentError | Ok[OffsetRows]:
|
1008
|
+
if num_rows <= 0:
|
1009
|
+
return InvalidArgumentError("num_rows must be positive")
|
1010
|
+
proto = table_pb2.OffsetRowsOp(source=self._proto, num_rows=num_rows)
|
1011
|
+
return Ok(from_proto(proto, skip_validate=True))
|
1012
|
+
|
995
1013
|
def order_by(
|
996
1014
|
self, columns: Sequence[str], *, desc: bool
|
997
1015
|
) -> InvalidArgumentError | Ok[OrderBy]:
|
@@ -1903,6 +1921,23 @@ class LimitRows(_Base):
|
|
1903
1921
|
return [self.source]
|
1904
1922
|
|
1905
1923
|
|
1924
|
+
class OffsetRows(_Base):
|
1925
|
+
"""Limit the number of rows in a table."""
|
1926
|
+
|
1927
|
+
@property
|
1928
|
+
def num_rows(self) -> int:
|
1929
|
+
return self._proto.offset_rows.num_rows
|
1930
|
+
|
1931
|
+
@property
|
1932
|
+
def source(self) -> Op:
|
1933
|
+
if self._parents:
|
1934
|
+
return self._parents[0]
|
1935
|
+
return from_proto(self._proto.offset_rows.source, skip_validate=True)
|
1936
|
+
|
1937
|
+
def sources(self):
|
1938
|
+
return [self.source]
|
1939
|
+
|
1940
|
+
|
1906
1941
|
class OrderBy(_Base):
|
1907
1942
|
"""Order the rows in a table."""
|
1908
1943
|
|
@@ -2756,6 +2791,7 @@ Op = (
|
|
2756
2791
|
| Join
|
2757
2792
|
| SelectColumns
|
2758
2793
|
| LimitRows
|
2794
|
+
| OffsetRows
|
2759
2795
|
| OrderBy
|
2760
2796
|
| FilterRows
|
2761
2797
|
| DistinctRows
|
@@ -2798,6 +2834,7 @@ _COMPUTE_OP_FIELD_NAME_TO_OP: Final = {
|
|
2798
2834
|
"join": Join,
|
2799
2835
|
"select_columns": SelectColumns,
|
2800
2836
|
"limit_rows": LimitRows,
|
2837
|
+
"offset_rows": OffsetRows,
|
2801
2838
|
"order_by": OrderBy,
|
2802
2839
|
"filter_rows": FilterRows,
|
2803
2840
|
"distinct_rows": DistinctRows,
|
@@ -3323,6 +3360,7 @@ class Schema(Sequence[Field]):
|
|
3323
3360
|
|
3324
3361
|
case (
|
3325
3362
|
LimitRows()
|
3363
|
+
| OffsetRows()
|
3326
3364
|
| OrderBy()
|
3327
3365
|
| FilterRows()
|
3328
3366
|
| DistinctRows()
|
@@ -24,6 +24,7 @@ _SqlComputableOp = (
|
|
24
24
|
| op_graph.op.Join
|
25
25
|
| op_graph.op.SelectColumns
|
26
26
|
| op_graph.op.LimitRows
|
27
|
+
| op_graph.op.OffsetRows
|
27
28
|
| op_graph.op.OrderBy
|
28
29
|
| op_graph.op.FilterRows
|
29
30
|
| op_graph.op.DistinctRows
|
@@ -74,6 +75,7 @@ def can_be_sql_computed(
|
|
74
75
|
| op_graph.op.Join()
|
75
76
|
| op_graph.op.SelectColumns()
|
76
77
|
| op_graph.op.LimitRows()
|
78
|
+
| op_graph.op.OffsetRows()
|
77
79
|
| op_graph.op.OrderBy()
|
78
80
|
| op_graph.op.FilterRows()
|
79
81
|
| op_graph.op.DistinctRows()
|
@@ -362,6 +364,12 @@ class _OpLogParser:
|
|
362
364
|
) -> Ok[sqlglot.exp.Query] | InvalidArgumentError | NoRowsError:
|
363
365
|
return self.parse(op.source).map(lambda query: query.limit(op.num_rows))
|
364
366
|
|
367
|
+
def _offset_rows_to_sql(
|
368
|
+
self,
|
369
|
+
op: op_graph.op.OffsetRows,
|
370
|
+
) -> Ok[sqlglot.exp.Query] | InvalidArgumentError | NoRowsError:
|
371
|
+
return self.parse(op.source).map(lambda query: query.offset(op.num_rows))
|
372
|
+
|
365
373
|
def _order_by_to_sql(
|
366
374
|
self,
|
367
375
|
op: op_graph.op.OrderBy,
|
@@ -715,6 +723,8 @@ class _OpLogParser:
|
|
715
723
|
return self._select_columns_to_sql(op)
|
716
724
|
case op_graph.op.LimitRows():
|
717
725
|
return self._limit_rows_to_sql(op)
|
726
|
+
case op_graph.op.OffsetRows():
|
727
|
+
return self._offset_rows_to_sql(op)
|
718
728
|
case op_graph.op.OrderBy():
|
719
729
|
return self._order_by_to_sql(op)
|
720
730
|
case op_graph.op.FilterRows():
|
@@ -166,6 +166,9 @@ class OpGraphPlanner:
|
|
166
166
|
case op_graph.op.LimitRows() | op_graph.op.SampleRows():
|
167
167
|
source_rows = cls.count_rows_upperbound(op.source)
|
168
168
|
num_rows = min(op.num_rows, source_rows)
|
169
|
+
case op_graph.op.OffsetRows():
|
170
|
+
source_rows = cls.count_rows_upperbound(op.source)
|
171
|
+
num_rows = max(source_rows - op.num_rows, 0)
|
169
172
|
case op_graph.op.Empty():
|
170
173
|
num_rows = 0
|
171
174
|
case op_graph.op.AggregateColumns():
|
{corvic_engine-0.3.0rc61 → corvic_engine-0.3.0rc62}/python/corvic/system/in_memory_executor.py
RENAMED
@@ -418,6 +418,16 @@ class InMemoryExecutor(OpGraphExecutor):
|
|
418
418
|
)
|
419
419
|
)
|
420
420
|
|
421
|
+
def _execute_offset_rows(
|
422
|
+
self, op: op_graph.op.OffsetRows, context: _InMemoryExecutionContext
|
423
|
+
):
|
424
|
+
return self._execute(op.source, context).map(
|
425
|
+
lambda source_batches: _SchemaAndBatches.from_dataframe(
|
426
|
+
_as_df(source_batches).slice(op.num_rows),
|
427
|
+
source_batches.metrics,
|
428
|
+
)
|
429
|
+
)
|
430
|
+
|
421
431
|
def _execute_order_by(
|
422
432
|
self, op: op_graph.op.OrderBy, context: _InMemoryExecutionContext
|
423
433
|
):
|
@@ -1600,6 +1610,8 @@ class InMemoryExecutor(OpGraphExecutor):
|
|
1600
1610
|
return self._execute_select_columns(op, context)
|
1601
1611
|
case op_graph.op.LimitRows():
|
1602
1612
|
return self._execute_limit_rows(op, context)
|
1613
|
+
case op_graph.op.OffsetRows():
|
1614
|
+
return self._execute_offset_rows(op, context)
|
1603
1615
|
case op_graph.op.OrderBy():
|
1604
1616
|
return self._execute_order_by(op, context)
|
1605
1617
|
case op_graph.op.FilterRows():
|
@@ -168,7 +168,16 @@ class Table:
|
|
168
168
|
return cls._compute_num_rows(op.source)
|
169
169
|
case op_graph.op.LimitRows() | op_graph.op.SampleRows():
|
170
170
|
source_rows = cls._compute_num_rows(op.source)
|
171
|
-
return
|
171
|
+
return (
|
172
|
+
min(op.num_rows, source_rows) if source_rows is not None else None
|
173
|
+
)
|
174
|
+
case op_graph.op.OffsetRows():
|
175
|
+
source_rows = cls._compute_num_rows(op.source)
|
176
|
+
return (
|
177
|
+
max(source_rows - op.num_rows, 0)
|
178
|
+
if source_rows is not None
|
179
|
+
else None
|
180
|
+
)
|
172
181
|
case op_graph.op.Empty():
|
173
182
|
return 0
|
174
183
|
case op_graph.op.Concat():
|
@@ -253,6 +262,7 @@ class Table:
|
|
253
262
|
op_graph.op.SelectColumns()
|
254
263
|
| op_graph.op.RenameColumns()
|
255
264
|
| op_graph.op.LimitRows()
|
265
|
+
| op_graph.op.OffsetRows()
|
256
266
|
| op_graph.op.OrderBy()
|
257
267
|
| op_graph.op.FilterRows()
|
258
268
|
| op_graph.op.UpdateFeatureTypes()
|