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
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
b28f067d
Commit
b28f067d
authored
Aug 10, 2016
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrong datatype in some scalapack calls in test programms
parent
43d232a1
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
test/Fortran/test_cholesky_complex.F90
test/Fortran/test_cholesky_complex.F90
+2
-2
test/Fortran/test_invert_trm_complex.F90
test/Fortran/test_invert_trm_complex.F90
+1
-1
test/Fortran/test_transpose_multiply_complex.F90
test/Fortran/test_transpose_multiply_complex.F90
+2
-2
No files found.
test/Fortran/test_cholesky_complex.F90
View file @
b28f067d
...
...
@@ -265,7 +265,7 @@ program test_cholesky
! tmp1 = a**H
#ifdef WITH_MPI
call
pztranc
(
na
,
na
,
1.0_rk
,
a
,
1
,
1
,
sc_desc
,
CZERO
,
tmp1
,
1
,
1
,
sc_desc
)
call
pztranc
(
na
,
na
,
CONE
,
a
,
1
,
1
,
sc_desc
,
CZERO
,
tmp1
,
1
,
1
,
sc_desc
)
#else
tmp1
=
transpose
(
conjg
(
a
))
#endif
...
...
@@ -294,7 +294,7 @@ program test_cholesky
print
*
,
" Maximum error of result: "
,
normmax
endif
if
(
normmax
.gt.
5e-11
)
then
if
(
normmax
.gt.
5e-11
_rk
)
then
status
=
1
endif
...
...
test/Fortran/test_invert_trm_complex.F90
View file @
b28f067d
...
...
@@ -320,7 +320,7 @@ program test_invert_trm
print
*
,
" Maximum error of result: "
,
normmax
endif
if
(
normmax
.gt.
5e-11
)
then
if
(
normmax
.gt.
5e-11
_rk
)
then
status
=
1
endif
...
...
test/Fortran/test_transpose_multiply_complex.F90
View file @
b28f067d
...
...
@@ -253,7 +253,7 @@ program test_transpose_multiply
! tmp1 = a**T
#ifdef WITH_MPI
call
pztranc
(
na
,
na
,
1.0_rk
,
a
,
1
,
1
,
sc_desc
,
CZERO
,
tmp1
,
1
,
1
,
sc_desc
)
call
pztranc
(
na
,
na
,
CONE
,
a
,
1
,
1
,
sc_desc
,
CZERO
,
tmp1
,
1
,
1
,
sc_desc
)
#else
tmp1
=
transpose
(
conjg
(
a
))
#endif
...
...
@@ -282,7 +282,7 @@ program test_transpose_multiply
print
*
,
" Maximum error of result: "
,
normmax
endif
if
(
normmax
.gt.
5e-11
)
then
if
(
normmax
.gt.
5e-11
_rk
)
then
status
=
1
endif
...
...
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