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
4ec5cc28
Commit
4ec5cc28
authored
Jun 14, 2016
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write out MPI PE to out.xml iff CPP_MPI is defined.
parent
cad4524d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
cmake/Files_and_Targets.txt
cmake/Files_and_Targets.txt
+1
-1
io/CMakeLists.txt
io/CMakeLists.txt
+1
-1
io/xmlOutput.F90
io/xmlOutput.F90
+8
-0
No files found.
cmake/Files_and_Targets.txt
View file @
4ec5cc28
...
...
@@ -49,7 +49,7 @@ init/tetcon.f init/kvecon.f
set(inpgen_F90 io/xsf_io.f90
global/types.F90 global/enpara.f90 global/chkmt.f90 inpgen/inpgen.f90 inpgen/set_inp.f90 io/rw_inp.f90 juDFT/juDFT.F90
juDFT/stop.F90 juDFT/time.F90 juDFT/init.F90 io/w_inpXML.f90 init/julia.f90 io/xmlOutput.
f
90)
juDFT/stop.F90 juDFT/time.F90 juDFT/init.F90 io/w_inpXML.f90 init/julia.f90 io/xmlOutput.
F
90)
set(fleur_SRC ${fleur_F90} ${fleur_F77})
...
...
io/CMakeLists.txt
View file @
4ec5cc28
...
...
@@ -20,5 +20,5 @@ io/wrtdop.f90
io/w_inpXML.f90
io/xsf_io.f90
io/xmlIntWrapFort.f90
io/xmlOutput.
f
90
io/xmlOutput.
F
90
)
io/xmlOutput.
f
90
→
io/xmlOutput.
F
90
View file @
4ec5cc28
...
...
@@ -40,6 +40,10 @@ MODULE m_xmlOutput
IMPLICIT
NONE
#ifdef CPP_MPI
include
"mpif.h"
INTEGER
::
err
,
isize
#endif
CHARACTER
(
LEN
=
8
)
::
date
CHARACTER
(
LEN
=
10
)
::
time
CHARACTER
(
LEN
=
10
)
::
zone
...
...
@@ -58,6 +62,10 @@ MODULE m_xmlOutput
WRITE
(
xmlOutputUnit
,
'(a)'
)
'<?xml version="1.0" encoding="UTF-8" standalone="no"?>'
WRITE
(
xmlOutputUnit
,
'(a)'
)
'<fleurOutput fleurOutputVersion="0.27">'
CALL
writeXMLElement
(
'programVersion'
,(/
'version'
/),(/
version_const
/))
#ifdef CPP_MPI
CALL
MPI_COMM_SIZE
(
MPI_COMM_WORLD
,
isize
,
err
)
CALL
writeXMLElementPoly
(
'parallelizationParameters'
,(/
'mpiPEs'
/),(/
isize
/))
#endif
CALL
writeXMLElement
(
'startDateAndTime'
,(/
'date'
,
'time'
,
'zone'
/),(/
dateString
,
timeString
,
zone
/))
END
SUBROUTINE
startXMLOutput
...
...
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