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
fleur
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
52
Issues
52
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
fleur
fleur
Commits
193fa3c6
Commit
193fa3c6
authored
May 02, 2017
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed MPI parallelization problem in for readPotential in eigen_soc/eigenso.F90
parent
bee6a48f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
eigen_soc/eigenso.F90
eigen_soc/eigenso.F90
+8
-2
No files found.
eigen_soc/eigenso.F90
View file @
193fa3c6
...
...
@@ -28,6 +28,7 @@ CONTAINS
USE
m_alineso
USE
m_pot_io
USE
m_types
USE
m_mpi_bc_pot
IMPLICIT
NONE
TYPE
(
t_mpi
),
INTENT
(
IN
)
::
mpi
...
...
@@ -89,8 +90,13 @@ CONTAINS
ALLOCATE
(
vz
(
vacuum
%
nmzd
,
2
,
DIMENSION
%
jspd
),
vr
(
atoms
%
jmtd
,
0
:
sphhar
%
nlhd
,
atoms
%
ntype
,
DIMENSION
%
jspd
),&
vzxy
(
vacuum
%
nmzxyd
,
oneD
%
odi
%
n2d
-1
,
2
,
DIMENSION
%
jspd
),
vpw
(
stars
%
ng3
,
DIMENSION
%
jspd
)
)
CALL
readPotential
(
stars
,
vacuum
,
atoms
,
sphhar
,
input
,
sym
,
POT_ARCHIVE_TYPE_TOT_const
,&
iter
,
vr
,
vpw
,
vz
,
vzxy
)
IF
(
mpi
%
irank
.EQ.
0
)
THEN
CALL
readPotential
(
stars
,
vacuum
,
atoms
,
sphhar
,
input
,
sym
,
POT_ARCHIVE_TYPE_TOT_const
,&
iter
,
vr
,
vpw
,
vz
,
vzxy
)
END
IF
#ifdef CPP_MPI
CALL
mpi_bc_pot
(
mpi
,
stars
,
sphhar
,
atoms
,
input
,
vacuum
,
iter
,
vr
,
vpw
,
vz
,
vzxy
)
#endif
DEALLOCATE
(
vz
,
vzxy
,
vpw
)
...
...
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