RandomBallCover  1.2.1
 Hosted by GitHub
Classes | Functions
rbc_kernels.cl File Reference

Kernels for building and accessing the Random Ball Cover data structure. More...

Classes

struct  dist_id
 Struct holding a value and a key. More...
 

Functions

void l1NormMetric (float4 *x, float4 *r, float4 *dists, uint n)
 Computes \( \ell_1 \)-norm based distances, \( d(x,y)=\|x-y\|_1=\sum_{i}|x_i-y_i| \). More...
 
void euclideanSquaredMetric (float4 *x, float4 *r, float4 *dists, uint n)
 Computes \( \ell_2 \)-norm based squared distances, \( d(x,y)=\|x-y\|^2_2=\sum_{i}(x_i-y_i)^{2} \). More...
 
void l1NormMetric8 (float8 *x, float8 *r, float4 *dists, float a, uint n)
 Computes \( \ell_1 \)-norm based distances, \( d(x,y)=\frac{1}{1+\alpha}\sum_{i=0}^{3}|x_i-y_i| + \alpha\sum_{i=4}^{7}|x_i-y_i| \). More...
 
void euclideanSquaredMetric8 (float8 *x, float8 *r, float4 *dists, float a, uint n)
 Computes \( \ell_2 \)-norm based squared distances, \( d(x,y)=\frac{1}{1+\alpha}\sum_{i=0}^{3}(x_i-y_i)^{2} + \alpha\sum_{i=4}^{7}(x_i-y_i)^{2} \). More...
 
kernel void rbcComputeDists_SharedNone (global float4 *X, global float4 *R, global float4 *D, uint d)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeDists_SharedR (global float4 *X, global float4 *R, global float4 *D, local float4 *data, uint d)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeDists_SharedXR (global float4 *X, global float4 *R, global float4 *D, local float4 *dataX, local float4 *dataR, uint d)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeDists_Kinect (global float8 *X, global float8 *R, global float4 *D, float a)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeDists_Kinect_R (global float8 *X, global float8 *R, global float4 *D, local float8 *dataR, float a)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeDists_Kinect_XR (global float8 *X, global float8 *R, global float4 *D, local float8 *dataX, local float8 *dataR, float a)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcNInit (global uint4 *N, uint val)
 Performs an array initialization. More...
 
kernel void rbcMinDists (global float4 *D, global dist_id *ID, global uint *N, global uint *Rnk, local dist_id *data, uint n, int accCounters)
 Performs a reduce operation on the columns of an array. More...
 
kernel void rbcGroupMinDists (global dist_id *GM, global dist_id *ID, global uint *N, global uint *Rnk, local dist_id *data, uint n, int accCounters)
 Performs a reduce operation on the columns of an array. More...
 
kernel void rbcPermute (global float4 *X, global dist_id *ID, global float4 *Xp, global dist_id *IDp, global uint *O, global uint *Rnk, int permID)
 Performs a permutation of the RBC database. More...
 
kernel void rbcPermute_Kinect (global float8 *X, global dist_id *ID, global float8 *Xp, global dist_id *IDp, global uint *O, global uint *Rnk, int permID)
 Performs a permutation of the RBC database for the case of Kinect data in \( \mathbb{R}^8 \). More...
 
kernel void rbcComputeQXDists (global float4 *Qp, global float4 *Xp, global float4 *D, global uint *XO, global uint *XN, global dist_id *RID, uint d)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcComputeQXDists_Kinect (global float8 *Qp, global float8 *Xp, global float4 *D, global uint *XO, global uint *XN, global dist_id *RID, float a)
 Computes the distances between two sets of points in a brute force way. More...
 
kernel void rbcGetNNs (global float4 *Xp, global float4 *NN, global uint *XO, global dist_id *RID, global dist_id *NNID)
 Collects the query NNs into an array. More...
 

Detailed Description

Kernels for building and accessing the Random Ball Cover data structure.

Author
Nick Lamprianidis
Version
1.1
Date
2015
Copyright (c) 2015 Nick Lamprianidis
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Function Documentation

void euclideanSquaredMetric ( float4 *  x,
float4 *  r,
float4 *  dists,
uint  n 
)
inline

Computes \( \ell_2 \)-norm based squared distances, \( d(x,y)=\|x-y\|^2_2=\sum_{i}(x_i-y_i)^{2} \).

Computes a nx4 block of distances between the two input sets.

Parameters
[in]xarray of database points holding only 4 of their dimensions.
[in]rarray of 4 representative points holding only 4 of their dimensions.
[out]distsarray of distances. Each row contains the distances of a database point from all 4 of the representative points.
[in]nnumber of database points.
void euclideanSquaredMetric8 ( float8 *  x,
float8 *  r,
float4 *  dists,
float  a,
uint  n 
)
inline

Computes \( \ell_2 \)-norm based squared distances, \( d(x,y)=\frac{1}{1+\alpha}\sum_{i=0}^{3}(x_i-y_i)^{2} + \alpha\sum_{i=4}^{7}(x_i-y_i)^{2} \).

Computes a nx4 block of distances between the two input sets in \( \mathbb{R}^8 \).

Attention
Additional control flow is necessary to cover the case of \( \alpha = 0 \). When \( \alpha = 0 \) and the result of the second dot product is INFINITY, NAN values will be produced that will cause problems in later steps.
Parameters
[in]xarray of database points.
[in]rarray of 4 representative points.
[out]distsarray of distances. Each row contains the distances of a database point from all 4 of the representative points.
[in]ascaling factor for the result from the high part of the vectors.
[in]nnumber of database points.
void l1NormMetric ( float4 *  x,
float4 *  r,
float4 *  dists,
uint  n 
)
inline

Computes \( \ell_1 \)-norm based distances, \( d(x,y)=\|x-y\|_1=\sum_{i}|x_i-y_i| \).

Computes a nx4 block of distances between the two input sets.

Parameters
[in]xarray of database points holding only 4 of their dimensions.
[in]rarray of 4 representative points holding only 4 of their dimensions.
[out]distsarray of distances. Each row contains the distances of a database point from all 4 of the representative points.
[in]nnumber of database points.
void l1NormMetric8 ( float8 *  x,
float8 *  r,
float4 *  dists,
float  a,
uint  n 
)
inline

Computes \( \ell_1 \)-norm based distances, \( d(x,y)=\frac{1}{1+\alpha}\sum_{i=0}^{3}|x_i-y_i| + \alpha\sum_{i=4}^{7}|x_i-y_i| \).

Computes a nx4 block of distances between the two input sets in \( \mathbb{R}^8 \).

Attention
Additional control flow is necessary to cover the case of \( \alpha = 0 \). When \( \alpha = 0 \) and the result of the second dot product is INFINITY, NAN values will be produced that will cause problems in later steps.
Parameters
[in]xarray of database points.
[in]rarray of 4 representative points.
[out]distsarray of distances. Each row contains the distances of a database point from all 4 of the representative points.
[in]ascaling factor for the result from the high part of the vectors.
[in]nnumber of database points.
kernel void rbcComputeDists_Kinect ( global float8 *  X,
global float8 *  R,
global float4 *  D,
float  a 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). There is no requirement for the local workspace.
Each work-item computes a 4x4 block of output elements. The number of points in each set should be a multiple of 4.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
This is a specialization of the rbcComputeDists_SharedNone for the case of Kinect 8-D data [geometric (Homogeneous coordinates) and photometric (RGBA values) information].
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]ascaling factor multiplying the result of the distance calculation for the high part of the points (float8 vectors).
kernel void rbcComputeDists_Kinect_R ( global float8 *  X,
global float8 *  R,
global float4 *  D,
local float8 *  dataR,
float  a 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). The local workspace should be \( (lXdim=4,lYdim=maxLocalSize/4) \) for optimal performance. In general, it can be \( lXdim \leq lYdim \).
Each work-item computes a 4x4 block of output elements. The number of points in the first set should be a multiple of \( 4*lYdim \). The number of points in the second set should be a multiple of \( 4*lXdim \). This restriction can be relaxed to a multiple of \( lYdim \) and \( lXdim \), respectively, by assigning one work-item per output element.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
This is a specialization of the rbcComputeDists_SharedR for the case of Kinect 8-D data [geometric (Homogeneous coordinates) and photometric (RGBA values) information]. The kernel uses shared memory for staging blocks of data from R.
Parameters
[in]Xarray of the database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of the representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]dataRlocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( 4*lXdim*sizeof\ (float8) \).
[in]ascaling factor multiplying the result of the distance calculation for the high part of the points (float8 vectors).
kernel void rbcComputeDists_Kinect_XR ( global float8 *  X,
global float8 *  R,
global float4 *  D,
local float8 *  dataX,
local float8 *  dataR,
float  a 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). The local workspace should be \( (lXdim=4,lYdim=maxLocalSize/4) \) for optimal performance. In general, it can be \( lYdim \geq lXdim \geq 4 \).
Each work-item computes a 4x4 block of output elements. The number of points in the first set should be a multiple of \( 4*lYdim \). The number of points in the second set should be a multiple of \( 4*lXdim \). This restriction can be relaxed to a multiple of \( lYdim \) and \( lXdim \), respectively, by assigning one work-item per output element.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
This is a specialization of the rbcComputeDists_SharedXR for the case of Kinect 8-D data [geometric (Homogeneous coordinates) and photometric (RGBA values) information]. The kernel uses shared memory for staging blocks of data from both X and R.
Parameters
[in]Xarray of the database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of the representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]dataXlocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( 4*lYdim*sizeof\ (float8) \).
[in]dataRlocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( 4*lXdim*sizeof\ (float8) \).
[in]ascaling factor multiplying the result of the distance calculation for the high part of the points (float8 vectors).
kernel void rbcComputeDists_SharedNone ( global float4 *  X,
global float4 *  R,
global float4 *  D,
uint  d 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). There is no requirement for the local workspace.
Each work-item computes a 4x4 block of output elements. The number of points in each set should be a multiple of 4.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
The kernel doesn't use any shared memory for staging data from X and R. There are other two cases implemented, rbcComputeDists_SharedR and rbcComputeDists_SharedXR. The access pattern for both arrays is strided, but the kernel's performance might actually be better than the other two cases', due to higher kernel occupancy.
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]ddimensionality of the associated points.
kernel void rbcComputeDists_SharedR ( global float4 *  X,
global float4 *  R,
global float4 *  D,
local float4 *  data,
uint  d 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). The local workspace should be square (performance requirement). That is, \( lXdim = lYdim \).
Each work-item computes a 4x4 block of output elements. The number of points in each set should be a multiple of \( 4*lXdim \). This restriction can be relaxed to a multiple of \( lXdim \) by assigning one work-item per output element.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
The kernel uses shared memory for staging blocks of data just from R. There are other two cases implemented, rbcComputeDists_SharedNone and rbcComputeDists_SharedXR. The kernel might have better performance than the last case, due to higher kernel occupancy.
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]datalocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( (4*lXdim)*(4*lYdim)*sizeof\ (float) \).
[in]ddimensionality of the associated points.
kernel void rbcComputeDists_SharedXR ( global float4 *  X,
global float4 *  R,
global float4 *  D,
local float4 *  dataX,
local float4 *  dataR,
uint  d 
)

Computes the distances between two sets of points in a brute force way.

For every point in the first set, the distances from that point to all points in the second set are computed.

Note
The x dimension of the global workspace, \( gXdim \), should be equal to the number of points in the second set, \( n \), divided by 4. That is, \( gXdim = n/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of points in the first set, \( m \), divided by 4. That is, \( gYdim = m/4 \). The local workspace should be square (performance requirement). That is, \( lXdim = lYdim \).
Each work-item computes a 4x4 block of output elements. The number of points in each set should be a multiple of \( 4*lXdim \). This restriction can be relaxed to a multiple of \( lXdim \) by assigning one work-item per output element.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
The names of the variables in the kernel are specialized for a particular use case (RBC construction). The functionality of the kernel remains generic.
Attention
The kernel uses shared memory for staging blocks of data from both X and R. There are other two cases implemented, rbcComputeDists_SharedNone and rbcComputeDists_SharedR. The kernel might have worse performance than those cases, due to high use of VGPRs and LDS, resulting in low kernel occupancy.
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]Rarray of representative points (each row contains a point), \( R_{n_r \times d} \).
[out]Darray of distances of the database points from the representative points (each row contains the distances of a database point from all the representative points), \( D_{n_x \times n_r} \).
[in]dataXlocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( (4*lXdim)*(4*lYdim)*sizeof\ (float) \).
[in]dataRlocal buffer. Its size should be 16 float elements for each work-item in a work-group. That is, \( (4*lXdim)*(4*lYdim)*sizeof\ (float) \).
[in]ddimensionality of the associated points.
kernel void rbcComputeQXDists ( global float4 *  Qp,
global float4 *  Xp,
global float4 *  D,
global uint *  XO,
global uint *  XN,
global dist_id RID,
uint  d 
)

Computes the distances between two sets of points in a brute force way.

Computes the distances from the queries to the points in their representative's list.

Note
The x dimension of the global workspace, \( gXdim \), should be greater than or equal to the number of points in the represetative list with the greatest cardinality, divided by 4. That is, \( gXdim \geq max_{r_{id}}{N[r_{id}]}/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of queries, \( n_q \), divided by 4. That is, \( gYdim = n_q/4 \). There is no requirement for the local workspace.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
Attention
In order for this kernel to be efficient there shouldn't be great load imbalance. That is, it is assumed that the database points are uniformly distributed across all representative lists. The alternative would be to process each query one at a time. But dispatching the kernel \( n_q \) times is not really a viable option.
Parameters
[in]Qparray of query points (each row contains a point), \( Q_{n_q \times d} \).
[in]Xparray of database points (each row contains a point), \( Xp_{n_x \times d} \).
[out]Darray of distances from the query points to the database points in each query's representative list (each row contains the distances of a query point from all the points), \( D_{n_q \times max_{r_{id}}{N[r_{id}]}} \).
[in]XOarray containing the offsets of the representative lists within the permuted database. Its size should be \( n_r*sizeof\ (uint) \).
[in]XNarray containing the cardinalities of the representative lists. Its size should be \( n_r*sizeof\ (uint) \).
[in]RIDarray with the representative ids for each query in Qp. Its size should be \( n_q*sizeof\ (dist\_id) \).
[in]ddimensionality of the associated points.
kernel void rbcComputeQXDists_Kinect ( global float8 *  Qp,
global float8 *  Xp,
global float4 *  D,
global uint *  XO,
global uint *  XN,
global dist_id RID,
float  a 
)

Computes the distances between two sets of points in a brute force way.

Computes the distances from the queries to the points in their representative's list.

Note
The x dimension of the global workspace, \( gXdim \), should be greater than or equal to the number of points in the represetative list with the greatest cardinality, divided by 4. That is, \( gXdim \geq max_{r_{id}}{N[r_{id}]}/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of queries, \( n_q \), divided by 4. That is, \( gYdim = n_q/4 \). There is no requirement for the local workspace.
The dimensionality of the points should be a multiple of 4. This restriction can be avoided by handling the input data as float.
Attention
In order for this kernel to be efficient there shouldn't be great load imbalance. That is, it is assumed that the database points are uniformly distributed across all representative lists. The alternative would be to process each query one at a time. But dispatching the kernel \( n_q \) times is not really a viable option.
Parameters
[in]Qparray of query points (each row contains a point), \( Q_{n_q \times d} \).
[in]Xparray of database points (each row contains a point), \( Xp_{n_x \times d} \).
[out]Darray of distances from the query points to the database points in each query's representative list (each row contains the distances of a query point from all the points), \( D_{n_q \times max_{r_{id}}{N[r_{id}]}} \).
[in]XOarray containing the offsets of the representative lists within the permuted database. Its size should be \( n_r*sizeof\ (uint) \).
[in]XNarray containing the cardinalities of the representative lists. Its size should be \( n_r*sizeof\ (uint) \).
[in]RIDarray with the representative ids for each query in Qp. Its size should be \( n_q*sizeof\ (dist\_id) \).
[in]ascaling factor multiplying the result of the distance calculation for the high part of the points (float8 vectors).
kernel void rbcGetNNs ( global float4 *  Xp,
global float4 *  NN,
global uint *  XO,
global dist_id RID,
global dist_id NNID 
)

Collects the query NNs into an array.

Note
The dimensionality of the points, d, should be a multiple of 4 (the data are handled as float4). The x dimension of the global workspace, \( gXdim \), should be equal to the dimensionality of the points divided by 4. That is, \( \ gXdim=d/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of queries, \( n_q \). That is, \( \ gYdim = n_q \). There is no requirement for the local workspace.
Parameters
[in]Xppermuted array of database points (each row contains a point), \( X_{n_x \times d} \).
[out]NNarray of queries' nearest neighbors (each row contains a point), \( X_{n_q \times d} \).
[in]XOarray containing the offsets of the representative lists within the permuted database. Its size should be \( n_r*sizeof\ (uint) \).
[in]RIDarray with the representative ids for each query in Qp. Its size should be \( n_q*sizeof\ (dist\_id) \).
[in]NNIDarray with the minimum distances and NN ids per query. Its size should be \( n_q*sizeof\ (dist\_id) \). The NN ids index the points in the associated representative list.
kernel void rbcGroupMinDists ( global dist_id GM,
global dist_id ID,
global uint *  N,
global uint *  Rnk,
local dist_id data,
uint  n,
int  accCounters 
)

Performs a reduce operation on the columns of an array.

Computes the minimum element, and its corresponding column id, for each row in an array. It also builds a histogram of the id values. And lastly, it stores the rank (order of insert) of each minimum element within its corresponding histogram bin.

Note
When there are multiple rows in the array, a reduce operation is performed per row, in parallel.
The x dimension of the global workspace, \( gXdim \), should be greater or equal to the number of elements in a row of the array divided by 2. That is, \( \ gXdim \geq n/2 \). Each work-item handles 2 dist_id elements in a row of the array. The y dimension of the global workspace, \( gYdim \), should be equal to the number of rows, m, in the array. That is, \( \ gYdim = m \). The local workspace should be 1 in the y dimension, and a power of 2 in the x dimension. It is recommended to use one wavefront/warp per work-group.
When the number of elements per row of the array is small enough to be handled by a single work-group, the output array will contain the true minimums. When the elements are more than that, they are partitioned into blocks and reduced independently. In this case, the kernel outputs the minimums from each block reduction. A reduction should then be made on those minimums for the final results.
The kernel increments the N counters. rbcNListInit should be called, before rbcGroupMinDists is dispatched, in order to initialize the counters.
Parameters
[in]GMinput array of dist_id elements.
[out]ID(reduced) output array of dist_id elements. When the kernel is dispatched with one work-group per row, the array contains the final results, and its size should be \( m*sizeof\ (dist\_id) \). When the kernel is dispatched with more than one work-group per row, the array contains the results from each block reduction, and its size should be \( wgXdim*m*sizeof\ (dist\_id) \).
[in]datalocal buffer. Its size should be 2 dist_id elements for each work-item in a work-group. That is, \( 2*lXdim*sizeof\ (dist\_id) \).
[out]Narray containing the cardinalities of the representative lists. Its size should be \( n*sizeof\ (uint) \).
[out]Rnkarray containing the rank (aka order, index) of each database point within the associated representative list. Its size should be \( m*sizeof\ (uint) \).
[in]nnumber of elements in a row of the array.
[in]accCountersflag to indicate whether or not to involve in the computation the list element counters, N, and element ranks, Rnk.
kernel void rbcMinDists ( global float4 *  D,
global dist_id ID,
global uint *  N,
global uint *  Rnk,
local dist_id data,
uint  n,
int  accCounters 
)

Performs a reduce operation on the columns of an array.

Computes the minimum element, and its corresponding column id, for each row in an array. It also builds a histogram of the id values. And lastly, it stores the rank (order of insert) of each minimum element within its corresponding histogram bin.

Note
When there are multiple rows in the array, a reduce operation is performed per row, in parallel.
The number of elements, n, in a row of the array should be a multiple of 4 (the data are handled as float4). The x dimension of the global workspace, \( gXdim \), should be greater or equal to the number of elements in a row of the array divided by 8. That is, \( \ gXdim \geq n/8 \). Each work-item handles 8 float (= 2 float4) elements in a row of the array. The y dimension of the global workspace, \( gYdim \), should be equal to the number of rows, m, in the array. That is, \( \ gYdim = m \). The local workspace should be 1 in the y dimension, and a power of 2 in the x dimension. It is recommended to use one wavefront/warp per work-group.
When the number of elements per row of the array is small enough to be handled by a single work-group, the output array, ID, will contain the true minimums. When the elements are more than that, they are partitioned into blocks and reduced independently. In this case, the kernel outputs the minimums from each block reduction. A reduction should then be made on those minimums for the final results by dispatching the rbcGroupMinDists kernel.
The kernel increments the N counters. rbcNListInit should be called, before rbcMinDists is dispatched, in order to initialize the counters.
Parameters
[in]Dinput array of float elements.
[out]ID(reduced) output array of dist_id elements. When the kernel is dispatched with one work-group per row, the array contains the final results, and its size should be \( m*sizeof\ (dist\_id) \). When the kernel is dispatched with more than one work-group per row, the array contains the results from each block reduction, and its size should be \( wgXdim*m*sizeof\ (dist\_id) \).
[in]datalocal buffer. Its size should be 2 dist_id elements for each work-item in a work-group. That is, \( 2*lXdim*sizeof\ (dist\_id) \).
[out]Narray containing the cardinalities of the representative lists. Its size should be \( n*sizeof\ (uint) \).
[out]Rnkarray containing the rank (aka order, index) of each database point within the associated representative list. Its size should be \( m*sizeof\ (uint) \).
[in]nnumber of elements in a row of the array divided by 4.
[in]accCountersflag to indicate whether or not to involve in the computation the list element counters, N, and element ranks, Rnk.
kernel void rbcNInit ( global uint4 *  N,
uint  val 
)

Performs an array initialization.

Initializes an 1-D array with a provided value.

Note
The number of elements, n, in the array should be a multiple of 4 (the data are handled as uint4). The global workspace should be one dimensional. The x dimension of the global workspace, \( gXdim \), should be equal to the number of elements in the array divided by 4. That is, \( \ gXdim=n/4 \). There is no requirement for the local workspace.
Parameters
[out]Narray that is going to contain the cardinalities of the representative lists. Its size should be \( n*sizeof\ (uint) \).
[in]valinitialization value.
kernel void rbcPermute ( global float4 *  X,
global dist_id ID,
global float4 *  Xp,
global dist_id IDp,
global uint *  O,
global uint *  Rnk,
int  permID 
)

Performs a permutation of the RBC database.

Permutes the database points to form the representative lists and allow for coalesced access pattern during the search operation.

Note
The dimensionality of the points, d, should be a multiple of 4 (the data are handled as float4). The x dimension of the global workspace, \( gXdim \), should be equal to the dimensionality of the points divided by 4. That is, \( \ gXdim=d/4 \). The y dimension of the global workspace, \( gYdim \), should be equal to the number of database points, \( n_x \). That is, \( \ gYdim = n_x \). There is no requirement for the local workspace.
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]IDarray with the minimum distances and representative ids per database point in X. Its size should be \( n_x*sizeof\ (dist\_id) \).
[out]Xppermuted array of database points (each row contains a point), \( X_{n_x \times d} \).
[out]IDparray with the minimum distances and representative ids per database point in Xp. Its size should be \( n_x*sizeof\ (dist\_id) \).
[in]Oarray containing the offsets of the representative lists within the permuted database. Its size should be \( n_r*sizeof\ (uint) \).
[in]Rnkarray containing the rank (aka order, index) of each database point within the associated representative list. Its size should be \( n_x*sizeof\ (uint) \).
[in]permIDflag to indicate whether or not to also permute the ID array.
kernel void rbcPermute_Kinect ( global float8 *  X,
global dist_id ID,
global float8 *  Xp,
global dist_id IDp,
global uint *  O,
global uint *  Rnk,
int  permID 
)

Performs a permutation of the RBC database for the case of Kinect data in \( \mathbb{R}^8 \).

Permutes the database points to form the representative lists and allow for coalesced access pattern during the search operation.

Note
The global workspace should be 1-dimensional and equal to the number of database points, \( n_x \). That is, \( gXdim=n_x \). There is no requirement for the local workspace.
Parameters
[in]Xarray of database points (each row contains a point), \( X_{n_x \times d} \).
[in]IDarray with the minimum distances and representative ids per database point in X. Its size should be \( n_x*sizeof\ (dist\_id) \).
[out]Xppermuted array of database points (each row contains a point), \( X_{n_x \times d} \).
[out]IDparray with the minimum distances and representative ids per database point in Xp. Its size should be \( n_x*sizeof\ (dist\_id) \).
[in]Oarray containing the offsets of the representative lists within the permuted database. Its size should be \( n_r*sizeof\ (uint) \).
[in]Rnkarray containing the rank (aka order, index) of each database point within the associated representative list. Its size should be \( n_x*sizeof\ (uint) \).
[in]permIDflag to indicate whether or not to also permute the ID array.