Skip to content

Commit 6bb5d2b

Browse files
author
Nikos Papailiou
committed
Fix test
1 parent a0ce15d commit 6bb5d2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,4 +334,4 @@ def dist_qv_udf(
334334
tmp.append((float(0.0), int(0)))
335335
results_per_query_d.append(np.array(tmp, dtype=np.dtype("float,uint64"))["f0"])
336336
results_per_query_i.append(np.array(tmp, dtype=np.dtype("float,uint64"))["f1"])
337-
return results_per_query_d, results_per_query_i
337+
return np.array(results_per_query_d), np.array(results_per_query_i)

0 commit comments

Comments
 (0)