Statistiques
| Révision :

root / man / man3 / HPL_dlaswp01T.3

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

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