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
782158b4
Commit
782158b4
authored
Mar 07, 2017
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do some checks only for irank=0
parent
a8486ab4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
init/checks.F90
init/checks.F90
+7
-5
No files found.
init/checks.F90
View file @
782158b4
...
@@ -29,11 +29,13 @@ MODULE m_checks
...
@@ -29,11 +29,13 @@ MODULE m_checks
!Check for IO options not available in parallel
!Check for IO options not available in parallel
#ifdef CPP_MPI
#ifdef CPP_MPI
CALL
MPI_COMM_SIZE
(
MPI_COMM_WORLD
,
irank
,
ierr
)
CALL
MPI_COMM_SIZE
(
MPI_COMM_WORLD
,
irank
,
ierr
)
IF
(
isize
>
1
)
THEN
IF
(
irank
.EQ.
0
)
THEN
IF
(
juDFT_was_argument
(
"-mem"
))
CALL
judft_error
(&
IF
(
isize
>
1
)
THEN
"-mem cannot be used in parallel mode for Eigenvector IO"
,
hint
=
"Use -mpi or -hdf instead"
)
IF
(
juDFT_was_argument
(
"-mem"
))
CALL
judft_error
(&
IF
(
juDFT_was_argument
(
"-da"
))
CALL
judft_error
(&
"-mem cannot be used in parallel mode for Eigenvector IO"
,
hint
=
"Use -mpi or -hdf instead"
)
"-da cannot be used in parallel mode for Eigenvector IO"
,
hint
=
"Use -mpi or -hdf instead"
)
IF
(
juDFT_was_argument
(
"-da"
))
CALL
judft_error
(&
"-da cannot be used in parallel mode for Eigenvector IO"
,
hint
=
"Use -mpi or -hdf instead"
)
END
IF
END
IF
END
IF
#endif
#endif
END
SUBROUTINE
check_command_line
END
SUBROUTINE
check_command_line
...
...
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