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