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
55
Issues
55
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
6ca39b83
Commit
6ca39b83
authored
Jun 08, 2016
by
Daniel Wortmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made long lines shorter as gfortran has a default 132 characters limit
parent
ae2739e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
io/xmlOutput.f90
io/xmlOutput.f90
+4
-2
juDFT/time.F90
juDFT/time.F90
+2
-1
No files found.
io/xmlOutput.f90
View file @
6ca39b83
...
...
@@ -222,7 +222,8 @@ MODULE m_xmlOutput
ALLOCATE
(
contentLineList
(
contentLineListSize
))
CALL
fillContentLineList
(
contentList
,
contentLineList
,
contentLineLength
)
IF
(
SIZE
(
contentLineList
)
.LE.
1
)
THEN
outputString
=
TRIM
(
ADJUSTL
(
outputString
))//
'>'
//
contentLineList
(
1
)//
'</'
//
TRIM
(
ADJUSTL
(
elementName
))//
'>'
outputString
=
TRIM
(
ADJUSTL
(
outputString
))//
'>'
//
contentLineList
(
1
)//
'</'
//&
TRIM
(
ADJUSTL
(
elementName
))//
'>'
ELSE
outputString
=
TRIM
(
ADJUSTL
(
outputString
))//
'>'
END
IF
...
...
@@ -289,7 +290,8 @@ MODULE m_xmlOutput
IF
((
i
-1
)
*
contentLineLength
+
j
.GT.
SIZE
(
contentList
))
THEN
RETURN
END
IF
WRITE
(
contentLineList
(
i
),
'(a,a20)'
)
TRIM
(
ADJUSTL
(
contentLineList
(
i
))),
TRIM
(
ADJUSTL
(
contentList
((
i
-1
)
*
contentLineLength
+
j
)))
WRITE
(
contentLineList
(
i
),
'(a,a20)'
)
TRIM
(
ADJUSTL
(
contentLineList
(
i
))),&
TRIM
(
ADJUSTL
(
contentList
((
i
-1
)
*
contentLineLength
+
j
)))
END
DO
END
DO
END
SUBROUTINE
fillContentLineList
...
...
juDFT/time.F90
View file @
6ca39b83
...
...
@@ -280,7 +280,8 @@
write
(
fn
,
"('Total execution time: ',i0,'sec')"
)
int
(
globaltimer
%
time
)
CALL
priv_writetimes_longest
(
globaltimer
,
fid
=
fn
)
WRITE
(
fn
,
"('Total execution time: ',i0,'sec, minimal timing printed:',i0,'sec')"
)
int
(
globaltimer
%
time
),
int
(
min_time
*
globaltimer
%
time
)
WRITE
(
fn
,
"('Total execution time: ',i0,'sec, minimal timing printed:',i0,'sec')"
)
&
int
(
globaltimer
%
time
),
int
(
min_time
*
globaltimer
%
time
)
#ifdef CPP_MPI
CALL
MPI_COMM_SIZE
(
MPI_COMM_WORLD
,
isize
,
err
)
WRITE
(
fn
,
*
)
"Program used "
,
isize
,
" PE"
...
...
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