1HPL_dlaswp05N(3) HPL Library Functions HPL_dlaswp05N(3)
2
3
4
6 HPL_dlaswp05N - copy rows of U into A.
7
9 #include "hpl.h"
10
11 void HPL_dlaswp05N( 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_dlaswp05N copies rows of U of global offset LINDXAU into rows of A
17 at positions indicated by LINDXA.
18
20 M (local input) const int
21 On entry, M specifies the number of rows of U that should be
22 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 rows of U that should
26 be copied into 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 rows 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,N). This
39 array contains the rows that are to be copied into 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,M).
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 copied from U.
48
49 LINDXAU (local input) const int *
50 On entry, LINDXAU is an array of dimension M that contains
51 the local row indexes of U that should be copied in A.
52
54 HPL_dlaswp00N (3), HPL_dlaswp10N (3), HPL_dlaswp01N (3),
55 HPL_dlaswp01T (3), HPL_dlaswp02N (3), HPL_dlaswp03N (3),
56 HPL_dlaswp03T (3), HPL_dlaswp04N (3), HPL_dlaswp04T (3),
57 HPL_dlaswp05N (3), HPL_dlaswp05T (3), HPL_dlaswp06N (3),
58 HPL_dlaswp06T (3).
59
60
61
62HPL 2.2 February 24, 2016 HPL_dlaswp05N(3)