Skip to content

Commit 0b5f21e

Browse files
committed
Fixing list for size estimates (#116486)
1 parent 347b7fe commit 0b5f21e

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

docs/reference/how-to/knn-search.asciidoc

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,13 @@ least enough RAM to hold the vector data and index structures. To check the
7272
size of the vector data, you can use the <<indices-disk-usage>> API.
7373

7474
Here are estimates for different element types and quantization levels:
75-
+
76-
--
77-
`element_type: float`: `num_vectors * num_dimensions * 4`
78-
`element_type: float` with `quantization: int8`: `num_vectors * (num_dimensions + 4)`
79-
`element_type: float` with `quantization: int4`: `num_vectors * (num_dimensions/2 + 4)`
80-
`element_type: float` with `quantization: bbq`: `num_vectors * (num_dimensions/8 + 12)`
81-
`element_type: byte`: `num_vectors * num_dimensions`
82-
`element_type: bit`: `num_vectors * (num_dimensions/8)`
83-
--
75+
76+
* `element_type: float`: `num_vectors * num_dimensions * 4`
77+
* `element_type: float` with `quantization: int8`: `num_vectors * (num_dimensions + 4)`
78+
* `element_type: float` with `quantization: int4`: `num_vectors * (num_dimensions/2 + 4)`
79+
* `element_type: float` with `quantization: bbq`: `num_vectors * (num_dimensions/8 + 12)`
80+
* `element_type: byte`: `num_vectors * num_dimensions`
81+
* `element_type: bit`: `num_vectors * (num_dimensions/8)`
8482

8583
If utilizing HNSW, the graph must also be in memory, to estimate the required bytes use `num_vectors * 4 * HNSW.m`. The
8684
default value for `HNSW.m` is 16, so by default `num_vectors * 4 * 16`.

0 commit comments

Comments
 (0)