Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PuReMD
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SParTA
PuReMD
Commits
3a08455f
Commit
3a08455f
authored
7 years ago
by
Kurt A. O'Hearn
Browse files
Options
Downloads
Patches
Plain Diff
PG-PuReMD: fix checks for recent MPICH versions.
parent
8dec1a1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
PG-PuReMD/configure.ac
+4
-0
4 additions, 0 deletions
PG-PuReMD/configure.ac
PG-PuReMD/src/cuda/cuda_forces.h
+0
-2
0 additions, 2 deletions
PG-PuReMD/src/cuda/cuda_forces.h
with
4 additions
and
2 deletions
PG-PuReMD/configure.ac
+
4
−
0
View file @
3a08455f
...
...
@@ -67,8 +67,12 @@ CC="$MPICC"
CFLAGS="$CFLAGS"
AC_CHECK_DECL([OPEN_MPI], [mpi_vendor="OpenMPI"],
[], [#include "mpi.h"])
# MPICH v2
AC_CHECK_DECL([MPICH2], [mpi_vendor="MPICH"],
[], [#include "mpi.h"])
# MPICH v3
AC_CHECK_DECL([MPICH_VERSION], [mpi_vendor="MPICH"],
[], [#include "mpi.h"])
CC="$sav_CC"
CFLAGS="$sav_CFLAGS"
...
...
This diff is collapsed.
Click to expand it.
PG-PuReMD/src/cuda/cuda_forces.h
+
0
−
2
View file @
3a08455f
...
...
@@ -35,8 +35,6 @@ void Cuda_Compute_NonBonded_Forces( reax_system *, control_params *,
int
Cuda_Compute_Forces
(
reax_system
*
,
control_params
*
,
simulation_data
*
,
storage
*
,
reax_list
**
,
output_controls
*
,
mpi_datatypes
*
);
void
Print_Forces
(
reax_system
*
);
#ifdef __cplusplus
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment