Skip to content

Commit ffd4099

Browse files
benwtrentweizijun
andauthored
fix bbq memory size estimate (elastic#124022) (elastic#124045)
(cherry picked from commit 76cf99c) Co-authored-by: weizijun <[email protected]>
1 parent e92fceb commit ffd4099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Here are estimates for different element types and quantization levels:
7676
* `element_type: float`: `num_vectors * num_dimensions * 4`
7777
* `element_type: float` with `quantization: int8`: `num_vectors * (num_dimensions + 4)`
7878
* `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)`
79+
* `element_type: float` with `quantization: bbq`: `num_vectors * (num_dimensions/8 + 14)`
8080
* `element_type: byte`: `num_vectors * num_dimensions`
8181
* `element_type: bit`: `num_vectors * (num_dimensions/8)`
8282

0 commit comments

Comments
 (0)