A high-performance general-purpose compute library

Sort an array over a given dimension. More...

Functions

AFAPI array sort (const array &in, const unsigned dim=0, const bool isAscending=true)
 C++ Interface to sort an array over a given dimension. More...
 
AFAPI af_err af_sort (af_array *out, const af_array in, const unsigned dim, const bool isAscending)
 C Interface to sort an array over a given dimension. More...
 

Detailed Description

Sort an array over a given dimension.

Function Documentation

◆ af_sort()

AFAPI af_err af_sort ( af_array out,
const af_array  in,
const unsigned  dim,
const bool  isAscending 
)

C Interface to sort an array over a given dimension.

Parameters
[out]outsorted output
[in]ininput array
[in]dimdimension along which the sort occurs
[in]isAscendingspecifies the sorting order
Returns
AF_SUCCESS, if function returns successfully, else an af_err code is given

◆ sort()

AFAPI array sort ( const array in,
const unsigned  dim = 0,
const bool  isAscending = true 
)

C++ Interface to sort an array over a given dimension.

Parameters
[in]ininput array
[in]dimdimension along which the sort occurs, 0 denotes the first non-singleton dimension
[in]isAscendingspecifies the sorting order
Returns
sorted output