Visible to Intel only — GUID: GUID-3BC4B472-BC2F-438C-80F8-431F32DB772D
Visible to Intel only — GUID: GUID-3BC4B472-BC2F-438C-80F8-431F32DB772D
?lapst
Sorts the numbers in increasing or decreasing order.
void slapst (const char* id, const MKL_INT* n, const float* d, MKL_INT* indx, MKL_INT* info);
void dlapst (const char* id, const MKL_INT* n, const double* d, MKL_INT* indx, MKL_INT* info);
- mkl_scalapack.h
?lapst is a modified version of the LAPACK routine ?lasrt.
Define a permutation indx that sorts the numbers in d in increasing order (if id = 'I') or in decreasing order (if id = 'D' ).
Use Quick Sort, reverting to Insertion sort on arrays of size <= 20. Dimension of STACK limits n to about 232.
- id
-
= 'I': sort d in increasing order;
= 'D': sort d in decreasing order.
- n
-
The length of the array d.
- d
-
Array, size (n)
The array to be sorted.
indx |
Array, size (n). The permutation which sorts the array d. |
info |
= 0: successful exit < 0: if info = -i, the i-th argument had an illegal value |