diff options
author | 2019-10-01 14:00:45 -0700 | |
---|---|---|
committer | 2020-02-10 23:17:17 -0800 | |
commit | 4f1557d3ba9f6f56f47dbd57b0d050ab43ce8685 (patch) | |
tree | 9c8d58a224f2181bcd2d10f34fcbb681b8c6b3d9 /Source/Python/WarpXWrappers.h | |
parent | d55c8a3d5f5be2c6085ebe337c9ec5ac41eb3c5f (diff) | |
download | WarpX-4f1557d3ba9f6f56f47dbd57b0d050ab43ce8685.tar.gz WarpX-4f1557d3ba9f6f56f47dbd57b0d050ab43ce8685.tar.zst WarpX-4f1557d3ba9f6f56f47dbd57b0d050ab43ce8685.zip |
Python Compile in Single Precision
Diffstat (limited to '')
-rw-r--r-- | Source/Python/WarpXWrappers.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/Source/Python/WarpXWrappers.h b/Source/Python/WarpXWrappers.h index 53309ad93..3fc2ecc93 100644 --- a/Source/Python/WarpXWrappers.h +++ b/Source/Python/WarpXWrappers.h @@ -12,9 +12,12 @@ #include <AMReX_BLProfiler.H> #ifdef BL_USE_MPI -#include <mpi.h> +# include <mpi.h> #endif +#include <AMReX_REAL.H> + + #ifdef __cplusplus extern "C" { #endif @@ -61,10 +64,17 @@ extern "C" { void warpx_evolve (int numsteps); // -1 means the inputs parameter will be used. - void warpx_addNParticles(int speciesnumber, int lenx, - amrex::ParticleReal* x, amrex::ParticleReal* y, amrex::ParticleReal* z, - amrex::ParticleReal* vx, amrex::ParticleReal* vy, amrex::ParticleReal* vz, - int nattr, amrex::ParticleReal* attr, int uniqueparticles); + void warpx_addNParticles(int speciesnumber, + int lenx, + amrex::ParticleReal const * x, + amrex::ParticleReal const * y, + amrex::ParticleReal const * z, + amrex::ParticleReal const * vx, + amrex::ParticleReal const * vy, + amrex::ParticleReal const * vz, + int nattr, + amrex::ParticleReal const * attr, + int uniqueparticles); void warpx_ConvertLabParamsToBoost(); |