1HPL_dlaswp06T(3) HPL Library Functions HPL_dlaswp06T(3)
2
3
4
6 HPL_dlaswp06T - swap rows or columns of U with rows of A.
7
9 #include "hpl.h"
10
11 void HPL_dlaswp06T( const int M, const int N, double * A, const int
12 LDA, double * U, const int LDU, const int * LINDXA );
13
15 HPL_dlaswp06T swaps columns of U with rows of A at positions
16 indicated by LINDXA.
17
19 M (local input) const int
20 On entry, M specifies the number of rows of A that should be
21 swapped with columns of U. M must be at least zero.
22
23 N (local input) const int
24 On entry, N specifies the length of the rows of A that should
25 be swapped with columns of U. N must be at least zero.
26
27 A (local output) double *
28 On entry, A points to an array of dimension (LDA,N). On exit,
29 the rows of this array specified by LINDXA are replaced by
30 columns of U.
31
32 LDA (local input) const int
33 On entry, LDA specifies the leading dimension of the array A.
34 LDA must be at least MAX(1,M).
35
36 U (local input/output) double *
37 On entry, U points to an array of dimension (LDU,*). This
38 array contains the columns of U that are to be swapped with
39 rows of A.
40
41 LDU (local input) const int
42 On entry, LDU specifies the leading dimension of the array U.
43 LDU must be at least MAX(1,N).
44
45 LINDXA (local input) const int *
46 On entry, LINDXA is an array of dimension M that contains the
47 local row indexes of A that should be swapped with U.
48
50 HPL_dlaswp00N (3), HPL_dlaswp10N (3), HPL_dlaswp01N (3),
51 HPL_dlaswp01T (3), HPL_dlaswp02N (3), HPL_dlaswp03N (3),
52 HPL_dlaswp03T (3), HPL_dlaswp04N (3), HPL_dlaswp04T (3),
53 HPL_dlaswp05N (3), HPL_dlaswp05T (3), HPL_dlaswp06N (3),
54 HPL_dlaswp06T (3).
55
56
57
58HPL 2.2 February 24, 2016 HPL_dlaswp06T(3)