-
Hello everyone, i wonder whether i can choose between CPU and GPU to for the search algorithms, such as KNN, Radius search, and Hybrid search? Best regards |
Beta Was this translation helpful? Give feedback.
Answered by
ssheorey
Jun 18, 2021
Replies: 1 comment 1 reply
-
Whether CPU or GPU is used depends on where the data is stored for constructing the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
germanros1987
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Whether CPU or GPU is used depends on where the data is stored for constructing the
NearestNeighborSearch
object. If you want to use CPU for a specific operation, move the data to the CPU first. If you want to use both at the same time, you'll have to build two independent NNS data structures.