Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
cb856e2a
Commit
cb856e2a
authored
May 15, 2017
by
BOUCHERIE Raphael
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated testing for pzgelqf_param
parent
1a08cbbb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
compute/pzgelqf_param.c
compute/pzgelqf_param.c
+2
-2
testing/testing_zgels_param.c
testing/testing_zgels_param.c
+2
-2
No files found.
compute/pzgelqf_param.c
View file @
cb856e2a
...
...
@@ -40,7 +40,7 @@
#endif
/**
* Parallel tile
QR
factorization (reduction Householder) - dynamic scheduling
* Parallel tile
LQ
factorization (reduction Householder) - dynamic scheduling
*/
void
morse_pzgelqf_param
(
const
libhqr_tree_t
*
qrtree
,
MORSE_desc_t
*
A
,
MORSE_desc_t
*
TS
,
MORSE_desc_t
*
TT
,
MORSE_sequence_t
*
sequence
,
MORSE_request_t
*
request
)
...
...
@@ -157,7 +157,7 @@ void morse_pzgelqf_param( const libhqr_tree_t *qrtree, MORSE_desc_t *A, MORSE_de
n
=
tiles
[
i
];
p
=
qrtree
->
currpiv
(
qrtree
,
k
,
n
);
tempnn
=
m
==
A
->
nt
-
1
?
A
->
n
-
n
*
A
->
nb
:
A
->
nb
;
tempnn
=
n
==
A
->
nt
-
1
?
A
->
n
-
n
*
A
->
nb
:
A
->
nb
;
/* Tiles killed is a TS */
if
(
qrtree
->
gettype
(
qrtree
,
k
,
n
)
==
0
){
...
...
testing/testing_zgels_param.c
View file @
cb856e2a
...
...
@@ -227,7 +227,7 @@ int testing_zgels_param(int argc, char **argv)
printf
(
" Computational tests pass if scaled residuals are less than 60.
\n
"
);
/* Morse routines */
MORSE_zgelqf
(
M
,
N
,
A2
,
LDA
,
TS
);
MORSE_zgelqf
_param
(
&
qrtree
,
M
,
N
,
A2
,
LDA
,
TS
,
TT
);
MORSE_zunglq
(
M
,
N
,
K
,
A2
,
LDA
,
TS
,
Q
,
LDA
);
MORSE_zgelqs
(
M
,
N
,
NRHS
,
A2
,
LDA
,
TS
,
B2
,
LDB
);
...
...
@@ -290,7 +290,7 @@ int testing_zgels_param(int argc, char **argv)
printf
(
" The relative machine precision (eps) is to be %e
\n
"
,
eps
);
printf
(
" Computational tests pass if scaled residuals are less than 60.
\n
"
);
MORSE_zgelqf
(
M
,
N
,
A2
,
LDA
,
TS
);
MORSE_zgelqf
_param
(
&
qrtree
,
M
,
N
,
A2
,
LDA
,
TS
,
TT
);
MORSE_ztrsm
(
MorseLeft
,
MorseLower
,
MorseNoTrans
,
MorseNonUnit
,
M
,
NRHS
,
1
.
0
,
A2
,
LDA
,
B2
,
LDB
);
MORSE_zunglq
(
M
,
N
,
K
,
A2
,
LDA
,
TS
,
Q
,
LDA
);
MORSE_zunmlq
(
MorseLeft
,
MorseConjTrans
,
N
,
NRHS
,
M
,
A2
,
LDA
,
TS
,
B2
,
LDB
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment