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
f5faf502
Commit
f5faf502
authored
Nov 23, 2017
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the setup of elpa_cholesky
parent
de792054
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
src/elpa1/legacy_interface/elpa_cholesky_template.F90
src/elpa1/legacy_interface/elpa_cholesky_template.F90
+7
-2
No files found.
src/elpa1/legacy_interface/elpa_cholesky_template.F90
View file @
f5faf502
...
...
@@ -62,7 +62,6 @@
complex
(
kind
=
COMPLEX_DATATYPE
)
::
a
(
lda
,
matrixCols
)
#endif
#endif
integer
(
kind
=
ik
)
::
nev
logical
,
intent
(
in
)
::
wantDebug
logical
::
success
integer
(
kind
=
ik
)
::
successInternal
...
...
@@ -86,7 +85,6 @@
e
=>
elpa_allocate
()
call
e
%
set
(
"na"
,
na
)
call
e
%
set
(
"nev"
,
nev
)
call
e
%
set
(
"local_nrows"
,
lda
)
call
e
%
set
(
"local_ncols"
,
matrixCols
)
call
e
%
set
(
"nblk"
,
nblk
)
...
...
@@ -94,6 +92,13 @@
call
e
%
set
(
"mpi_comm_rows"
,
mpi_comm_rows
)
call
e
%
set
(
"mpi_comm_cols"
,
mpi_comm_cols
)
!! the elpa object needs nev to be set (in case the EVP-solver is
!! called later. Thus it is set by user, do nothing, otherwise,
!! set it to na as default
!if (e%is_set("nev")) .ne. 1) then
! call e%set("nev", na)
!endif
if
(
e
%
setup
()
.ne.
ELPA_OK
)
then
print
*
,
"Cannot setup ELPA instance"
success
=
.false.
...
...
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