Skip to content

Commit b719a68

Browse files
authored
Mark ivf_pq index as supported (#557)
1 parent b2cd2b6 commit b719a68

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

apis/python/src/tiledb/vector_search/ivf_pq_index.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ def query_internal(
146146
Number of partitions to check per query.
147147
Use this parameter to trade-off accuracy for latency and cost.
148148
"""
149-
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
150149
if self.size == 0:
151150
return np.full((queries.shape[0], k), MAX_FLOAT32), np.full(
152151
(queries.shape[0], k), MAX_UINT64
@@ -195,7 +194,6 @@ def create(
195194
The TileDB vector search storage version to use.
196195
If not provided, use the latest stable storage version.
197196
"""
198-
warnings.warn("The IVF PQ index is not yet supported, please use with caution.")
199197
validate_storage_version(storage_version)
200198
# TODO(SC-49166): Support old storage versions with type-erased indexes.
201199
if storage_version == "0.1" or storage_version == "0.2":

0 commit comments

Comments
 (0)