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
51
Issues
51
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
7f919dd2
Commit
7f919dd2
authored
Jul 12, 2016
by
Daniel Wortmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated timing routines
parent
57254036
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
469 additions
and
479 deletions
+469
-479
io/w_inpXML.f90
io/w_inpXML.f90
+1
-1
juDFT/CMakeLists.txt
juDFT/CMakeLists.txt
+1
-0
juDFT/init.F90
juDFT/init.F90
+2
-21
juDFT/juDFT.F90
juDFT/juDFT.F90
+1
-0
juDFT/time.F90
juDFT/time.F90
+464
-457
No files found.
io/w_inpXML.f90
View file @
7f919dd2
...
@@ -25,7 +25,7 @@ SUBROUTINE w_inpXML(&
...
@@ -25,7 +25,7 @@ SUBROUTINE w_inpXML(&
&
numSpecies
,
enpara
)
&
numSpecies
,
enpara
)
USE
m_types
USE
m_types
USE
m_juDFT
_init
USE
m_juDFT
USE
m_constants
USE
m_constants
USE
m_xmlOutput
USE
m_xmlOutput
...
...
juDFT/CMakeLists.txt
View file @
7f919dd2
...
@@ -16,4 +16,5 @@ juDFT/init.F90
...
@@ -16,4 +16,5 @@ juDFT/init.F90
juDFT/juDFT.F90
juDFT/juDFT.F90
juDFT/stop.F90
juDFT/stop.F90
juDFT/time.F90
juDFT/time.F90
juDFT/args.F90
)
)
juDFT/init.F90
View file @
7f919dd2
...
@@ -8,28 +8,9 @@
...
@@ -8,28 +8,9 @@
USE
m_judft_time
USE
m_judft_time
IMPLICIT
NONE
IMPLICIT
NONE
PRIVATE
PRIVATE
PUBLIC
juDFT_init
,
juDFT_was_argument
PUBLIC
juDFT_init
CONTAINS
CONTAINS
FUNCTION
juDFT_was_argument
(
arg
)
RESULT
(
OK
)
IMPLICIT
NONE
CHARACTER
(
len
=*
),
INTENT
(
IN
)::
arg
LOGICAL
ok
INTEGER
::
i
CHARACTER
(
LEN
=
30
)::
str
ok
=
.false.
DO
i
=
1
,
command_argument_count
()
CALL
get_command_argument
(
i
,
str
)
IF
(
adjustl
(
str
)
==
adjustl
(
arg
))
ok
=
.true.
ENDDO
IF
(
ok
)
return
!Test for environment variable as well
CALL
get_environment_variable
(
"juDFT"
,
str
,
status
=
i
)
IF
(
i
==
0
)
ok
=
index
(
str
,
adjustl
(
arg
))
>
0
END
FUNCTION
SUBROUTINE
juDFT_init
()
SUBROUTINE
juDFT_init
()
CALL
signal_handler
()
CALL
signal_handler
()
END
SUBROUTINE
juDFT_init
END
SUBROUTINE
juDFT_init
...
...
juDFT/juDFT.F90
View file @
7f919dd2
...
@@ -8,5 +8,6 @@
...
@@ -8,5 +8,6 @@
USE
m_juDFT_stop
USE
m_juDFT_stop
USE
m_juDFT_time
USE
m_juDFT_time
USE
m_juDFT_init
USE
m_juDFT_init
USE
m_judft_args
END
MODULE
m_juDFT
END
MODULE
m_juDFT
juDFT/time.F90
View file @
7f919dd2
This diff is collapsed.
Click to expand it.
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