void Sort(const FDTensor &x, FDTensor *out, FDTensor *indices, int axis, bool descending, FDDataType indices_type)
Performs sorting on the input tensor along the given axis and outputs two tensors, Output(Out) and Output(Indices). They reserve the same shape with Input(X), and Output(Out) represents the sorted tensor while Output(Indices) gives the sorted order along the given axis Attr(axis).
Definition: sort.cc:111