From 13f56938bc826504814c60e21cc0d742001a43e6 Mon Sep 17 00:00:00 2001 From: AnthonyTsu1984 <115786031+AnthonyTsu1984@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:36:03 +0800 Subject: [PATCH] Update gpu_index.md --- site/en/reference/gpu_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/reference/gpu_index.md b/site/en/reference/gpu_index.md index ba9cd1970..997b24f78 100644 --- a/site/en/reference/gpu_index.md +++ b/site/en/reference/gpu_index.md @@ -27,7 +27,7 @@ GPU_CAGRA is a graph-based index optimized for GPUs, Using inference-grade GPUs | `graph_degree` | Affects search performance and recall by setting the graph's degree after pruning. A larger difference between these two degrees results in a longer build time. Its value must be smaller than the value of __intermediate_graph_degree__. | 64 | | `build_algo` | Selects the graph generation algorithm before pruning. Possible values:
IVF_PQ: Offers higher quality but slower build time.
NN_DESCENT: Provides a quicker build with potentially lower recall. | IVF_PQ | | `cache_dataset_on_device` | Decides whether to cache the original dataset in GPU memory. Possible values:
"true": Caches the original dataset to enhance recall by refining search results.
"false": Does not cache the original dataset to save gpu memory. | "false" | - | `adapt_for_cpu` | Decides whether to conduct searches solely on CPU and reserves GPU resources for other operations.
Setting this parameter to `true` requires the presence of the `ef` parameter carried in the search requests. | "false" | + | `adapt_for_cpu` | Decides whether to conduct searches solely on CPU and reserves GPU resources for other operations.
Setting this parameter to `true` requires the presence of the `ef` parameter in the search requests. | "false" | - Search parameters