GPU not being used, after enabling gpu=true and index being created #4184
-
Installed Milvus on Ubuntu 18, GE Force GTX 1080 When I run a query it seems to use CPUs only and the GPU is dead quiet (verified using I also have enable: true (below). So not sure what I am doing wrong.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, When you set gpu.enable=true, Milvus will use the GPU to build the index. And the |
Beta Was this translation helpful? Give feedback.
Hi,
When you set gpu.enable=true, Milvus will use the GPU to build the index.
And the
gpu_search_threshold
parameter is related to the search processing, if nq ≥gpu_search_threshold
, the search will be executed on GPUs only.And if nq <
gpu_search_threshold
, the search will be executed on both CPUs and GPUs.