1HPL_dlaswp03N(3) HPL Library Functions HPL_dlaswp03N(3)
2
3
4
6 HPL_dlaswp03N - copy rows of W into U.
7
9 #include "hpl.h"
10
11 void HPL_dlaswp03N( const int M, const int N, double * U, const int
12 LDU, const double * W0, const double * W, const int LDW );
13
15 HPL_dlaswp03N copies columns of W into rows of an array U. The
16 destination in U of these columns contained in W is stored within W0.
17
19 M (local input) const int
20 On entry, M specifies the number of columns of W stored
21 contiguously that should be copied into U. M must be at least
22 zero.
23
24 N (local input) const int
25 On entry, N specifies the length of columns of W stored
26 contiguously that should be copied into U. N must be at least
27 zero.
28
29 U (local input/output) double *
30 On entry, U points to an array of dimension (LDU,N). Columns
31 of W are copied as rows within this array U at the positions
32 specified in W0.
33
34 LDU (local input) const int
35 On entry, LDU specifies the leading dimension of the array U.
36 LDU must be at least MAX(1,M).
37
38 W0 (local input) const double *
39 On entry, W0 is an array of size (M-1)*LDW+1, that contains
40 the destination offset in U where the columns of W should be
41 copied.
42
43 W (local input) const double *
44 On entry, W is an array of size (LDW,M), that contains data
45 to be copied into U. For i in [0..M), entries W(:,i) should
46 be copied into the row or column W0(i*LDW) of U.
47
48 LDW (local input) const int
49 On entry, LDW specifies the leading dimension of the array W.
50 LDW must be at least MAX(1,N+1).
51
53 HPL_dlaswp00N (3), HPL_dlaswp10N (3), HPL_dlaswp01N (3),
54 HPL_dlaswp01T (3), HPL_dlaswp02N (3), HPL_dlaswp03N (3),
55 HPL_dlaswp03T (3), HPL_dlaswp04N (3), HPL_dlaswp04T (3),
56 HPL_dlaswp05N (3), HPL_dlaswp05T (3), HPL_dlaswp06N (3),
57 HPL_dlaswp06T (3).
58
59
60
61HPL 2.2 February 24, 2016 HPL_dlaswp03N(3)