Statistiques
| Révision :

root / man / man3 / HPL_dlaswp02N.3

Historique | Voir | Annoter | Télécharger (2,42 ko)

1
.TH HPL_dlaswp02N 3 "September 10, 2008" "HPL 2.0" "HPL Library Functions"
2
.SH NAME
3
HPL_dlaswp02N \- pack rows of A into columns of W.
4
.SH SYNOPSIS
5
\fB\&#include "hpl.h"\fR
6
 
7
\fB\&void\fR
8
\fB\&HPL_dlaswp02N(\fR
9
\fB\&const int\fR
10
\fI\&M\fR,
11
\fB\&const int\fR
12
\fI\&N\fR,
13
\fB\&const double *\fR
14
\fI\&A\fR,
15
\fB\&const int\fR
16
\fI\&LDA\fR,
17
\fB\&double *\fR
18
\fI\&W0\fR,
19
\fB\&double *\fR
20
\fI\&W\fR,
21
\fB\&const int\fR
22
\fI\&LDW\fR,
23
\fB\&const int *\fR
24
\fI\&LINDXA\fR,
25
\fB\&const int *\fR
26
\fI\&LINDXAU\fR
27
\fB\&);\fR
28
.SH DESCRIPTION
29
\fB\&HPL_dlaswp02N\fR
30
packs scattered rows of an array  A  into workspace  W.
31
The row offsets in A are specified by LINDXA.
32
.SH ARGUMENTS
33
.TP 8
34
M       (local input)           const int
35
On entry, M  specifies the number of rows of A that should be
36
copied into W. M must be at least zero.
37
.TP 8
38
N       (local input)           const int
39
On entry, N  specifies the length of rows of A that should be
40
copied into W. N must be at least zero.
41
.TP 8
42
A       (local input)           const double *
43
On entry, A points to an array of dimension (LDA,N). The rows
44
of this array specified by LINDXA should be copied into W.
45
.TP 8
46
LDA     (local input)           const int
47
On entry, LDA specifies the leading dimension of the array A.
48
LDA must be at least MAX(1,M).
49
.TP 8
50
W0      (local input/output)    double *
51
On exit,  W0  is  an array of size (M-1)*LDW+1, that contains
52
the destination offset  in U where the columns of W should be
53
copied.
54
.TP 8
55
W       (local output)          double *
56
On entry, W  is an array of size (LDW,M). On exit, W contains
57
the  rows LINDXA[i] for i in [0..M) of A stored  contiguously
58
in W(:,i).
59
.TP 8
60
LDW     (local input)           const int
61
On entry, LDW specifies the leading dimension of the array W.
62
LDW must be at least MAX(1,N+1).
63
.TP 8
64
LINDXA  (local input)           const int *
65
On entry, LINDXA is an array of dimension M that contains the
66
local row indexes of A that should be copied into W.
67
.TP 8
68
LINDXAU (local input)           const int *
69
On entry, LINDXAU  is an array of dimension M  that  contains
70
the local  row indexes of  U that should be copied into A and
71
replaced by the rows of W.
72
.SH SEE ALSO
73
.BR HPL_dlaswp00N \ (3),
74
.BR HPL_dlaswp10N \ (3),
75
.BR HPL_dlaswp01N \ (3),
76
.BR HPL_dlaswp01T \ (3),
77
.BR HPL_dlaswp02N \ (3),
78
.BR HPL_dlaswp03N \ (3),
79
.BR HPL_dlaswp03T \ (3),
80
.BR HPL_dlaswp04N \ (3),
81
.BR HPL_dlaswp04T \ (3),
82
.BR HPL_dlaswp05N \ (3),
83
.BR HPL_dlaswp05T \ (3),
84
.BR HPL_dlaswp06N \ (3),
85
.BR HPL_dlaswp06T \ (3).