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
e90f5e95
Commit
e90f5e95
authored
Feb 14, 2017
by
Andreas Marek
Browse files
Add missing useGPU clause to fix ELPA2 real GPU version
parent
adf6a7d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/elpa2_trans_ev_band_to_full_template.X90
View file @
e90f5e95
...
...
@@ -1029,12 +1029,14 @@
endif
#if BAND_TO_FULL_BLOCKING
deallocate(tmat_complete, t_tmp, t_tmp2, stat=istat, errmsg=errorMessage)
if (istat .ne. 0) then
print *,"trans_ev_band_to_full_&
MATH_DATATYPE&
&: error when deallocating tmat_complete, t_tmp, t_tmp2 "//errorMessage
stop 1
if (.not.(useGPU)) then
deallocate(tmat_complete, t_tmp, t_tmp2, stat=istat, errmsg=errorMessage)
if (istat .ne. 0) then
print *,"trans_ev_band_to_full_&
MATH_DATATYPE&
&: error when deallocating tmat_complete, t_tmp, t_tmp2 "//errorMessage
stop 1
endif
endif
#endif
...
...
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