Skip to content

Commit

Permalink
mark ivf_pq index as supported
Browse files Browse the repository at this point in the history
  • Loading branch information
jparismorgan committed Oct 17, 2024
1 parent eaf1a5f commit e0a1cdc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apis/python/src/tiledb/vector_search/ivf_pq_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ def query_internal(
Number of partitions to check per query.
Use this parameter to trade-off accuracy for latency and cost.
"""
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
if self.size == 0:
return np.full((queries.shape[0], k), MAX_FLOAT32), np.full(
(queries.shape[0], k), MAX_UINT64
Expand Down Expand Up @@ -195,7 +194,6 @@ def create(
The TileDB vector search storage version to use.
If not provided, use the latest stable storage version.
"""
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
validate_storage_version(storage_version)
# TODO(SC-49166): Support old storage versions with type-erased indexes.
if storage_version == "0.1" or storage_version == "0.2":
Expand Down

0 comments on commit e0a1cdc

Please sign in to comment.