Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elpa
elpa
Commits
0417cb1d
Commit
0417cb1d
authored
Apr 18, 2017
by
Pavel Kus
Browse files
minor fixes
parent
f129a80a
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/elpa1/legacy_interface/elpa_cholesky_template_legacy.X90
View file @
0417cb1d
...
...
@@ -100,8 +100,10 @@
success = .true.
if (elpa_init(20170403) /= ELPA_OK) then
print *, "ELPA API version not supported"
success = .false.
error stop "ELPA API version not supported"
stop
return
endif
nev = 10
...
...
src/elpa1/legacy_interface/elpa_invert_trm_legacy.X90
View file @
0417cb1d
...
...
@@ -108,8 +108,10 @@
success = .true.
if (elpa_init(20170403) /= ELPA_OK) then
print *, "ELPA API version not supported"
success = .false.
error stop "ELPA API version not supported"
stop
return
endif
nev = 10
...
...
src/elpa1/legacy_interface/elpa_multiply_a_b_legacy.X90
View file @
0417cb1d
...
...
@@ -121,8 +121,10 @@
!l_cols = local_index(ncb, my_pcol, np_cols, nblk, -1) ! Local cols of b
if (elpa_init(20170403) /= ELPA_OK) then
print *, "ELPA API version not supported"
success = .false.
error stop "ELPA API version not supported"
stop
return
endif
nev = 10
...
...
src/elpa1/legacy_interface/elpa_solve_tridi_legacy.X90
View file @
0417cb1d
...
...
@@ -88,8 +88,10 @@
success = .false.
if (elpa_init(20170403) /= ELPA_OK) then
print *, "ELPA API version not supported"
success = .false.
error stop "ELPA API version not supported"
stop
return
endif
elpaAPI = elpa_create(na, nev, ldq, matrixCols, nblk, successInternal)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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