Tagged Questions
0
votes
1answer
168 views
OpenCL Memory Optimization - Nearest Neighbour
I'm writing a program in OpenCL that receives two arrays of points, and calculates the nearest neighbour for each point.
I have two programs for this. One of them will calculate distance for 4 ...
1
vote
3answers
552 views
Best GPU algorithm for calculating lists of neighbours
Given a collection of thousands of points in 3D, I need to get the list of neighbours for each particle that fall inside some cutoff value (in terms of euclidean distance), and if possible, sorted ...
6
votes
7answers
2k views
[OpenCL]nearest neighbour using euclidean distance
I'm using OpenCL to find the nearest neighbour between two set of 3D points.
Nearest Neighbour: For each point(x,y,z) in the DataSet I have to find the nearest one in the model. Squared distance = ...