forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12638 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
f350cc4ec7
commit
c90746a20c
|
@ -13,7 +13,12 @@
|
|||
|
||||
#ifdef MPI_GERYON
|
||||
#include "mpi.h"
|
||||
#define NVD_GERYON_EXIT MPI_Abort(MPI_COMM_WORLD,-1)
|
||||
#define NVD_GERYON_EXIT do { \
|
||||
int is_final; \
|
||||
MPI_Finalized(&is_final); \
|
||||
if (!is_final) \
|
||||
MPI_Abort(MPI_COMM_WORLD,-1); \
|
||||
} while(0)
|
||||
#else
|
||||
#define NVD_GERYON_EXIT assert(0==1)
|
||||
#endif
|
||||
|
|
|
@ -12,7 +12,12 @@
|
|||
|
||||
#ifdef MPI_GERYON
|
||||
#include "mpi.h"
|
||||
#define OCL_GERYON_EXIT MPI_Abort(MPI_COMM_WORLD,-1)
|
||||
#define OCL_GERYON_EXIT do { \
|
||||
int is_final; \
|
||||
MPI_Finalized(&is_final); \
|
||||
if (!is_final) \
|
||||
MPI_Abort(MPI_COMM_WORLD,-1); \
|
||||
} while(0)
|
||||
#else
|
||||
#define OCL_GERYON_EXIT assert(0==1)
|
||||
#endif
|
||||
|
|
|
@ -31,9 +31,16 @@ texture<int2> q_tex;
|
|||
#endif
|
||||
|
||||
#else
|
||||
|
||||
#define pos_tex x_
|
||||
#define q_tex q_
|
||||
#pragma OPENCL EXTENSION cl_khr_global_int32_base_atomics: enable
|
||||
#if defined(cl_amd_fp64)
|
||||
#pragma OPENCL EXTENSION cl_amd_fp64 : enable
|
||||
#else
|
||||
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
// Number of threads per pencil for charge spread
|
||||
|
|
Loading…
Reference in New Issue