Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
65aadc18
Commit
65aadc18
authored
Jan 12, 2017
by
Mathieu Faverge
Browse files
Remove debug check
parent
0825038b
Changes
1
Hide whitespace changes
Inline
Side-by-side
testing/testing_zgeqrf_qdwh.c
View file @
65aadc18
...
...
@@ -67,7 +67,7 @@ int testing_zgeqrf_qdwh(int argc, char **argv)
int
LDA
=
2
*
M
;
double
eps
;
int
info_ortho
,
info_solution
,
info_factorization
;
int
i
,
j
,
rc
;
int
i
,
j
;
/**
* Compute A = QR with
...
...
@@ -109,17 +109,14 @@ int testing_zgeqrf_qdwh(int argc, char **argv)
LAPACKE_zlacpy_work
(
LAPACK_COL_MAJOR
,
'A'
,
M
,
M
,
A2
,
M
,
A
+
M
,
LDA
);
/* Factorize A */
rc
=
MORSE_zgeqrf
(
M
,
M
,
A1
,
M
,
T1
);
assert
(
rc
==
0
);
rc
=
MORSE_ztpqrt
(
M
,
M
,
optid
?
M
:
0
,
A1
,
M
,
A2
,
M
,
T2
);
assert
(
rc
==
0
);
MORSE_zgeqrf
(
M
,
M
,
A1
,
M
,
T1
);
MORSE_ztpqrt
(
M
,
M
,
optid
?
M
:
0
,
A1
,
M
,
A2
,
M
,
T2
);
/* Generate the Q */
rc
=
MORSE_ztpgqrt
(
M
,
M
,
M
,
(
optid
)
?
M
:
0
,
A1
,
M
,
T1
,
A2
,
M
,
T2
,
Q1
,
M
,
Q2
,
M
);
assert
(
rc
==
0
);
MORSE_ztpgqrt
(
M
,
M
,
M
,
(
optid
)
?
M
:
0
,
A1
,
M
,
T1
,
A2
,
M
,
T2
,
Q1
,
M
,
Q2
,
M
);
/* Copy Q in a single matrix */
Q
=
(
MORSE_Complex64_t
*
)
malloc
(
2
*
M
*
M
*
sizeof
(
MORSE_Complex64_t
));
...
...
Write
Preview
Supports
Markdown
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