Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-01-16 | No thrust (#629) | 1 | -6/+1 | ||
* remove thrust from warpx * add in header for std::complex | |||||
2020-01-07 | Update Source/FieldSolver/SpectralSolver/SpectralSolver.H | 1 | -1/+1 | ||
Co-Authored-By: Axel Huebl <axel.huebl@plasma.ninja> | |||||
2019-12-18 | Make comments in header files Doxygen-readable | 4 | -11/+19 | ||
2019-12-15 | Doxygen: add amrex:: prefix for function arguments in cpp files | 2 | -11/+11 | ||
2019-11-16 | Remove more fortran code | 3 | -141/+0 | ||
2019-09-25 | Merge pull request #397 from dpgrote/RZ_laser | 1 | -6/+5 | ||
Implementing the laser in RZ | |||||
2019-09-24 | Fixed bug in RZ push of Bx | 1 | -6/+5 | ||
2019-09-23 | Do not pass high and low bounds by reference | 1 | -5/+5 | ||
2019-09-12 | Merge branch 'dev' into PortingFortranPML_To_CPP_CUDA | 9 | -135/+200 | ||
2019-09-11 | Source: tabs2spaces | 3 | -56/+61 | ||
Manually fix tabs to four spaces and alignments for consistent prepresentation of source code over all machines. | |||||
2019-09-11 | Headers: No Public Scope Using Namespace | 2 | -106/+174 | ||
Writing `using namespace XY;` in public scope of a header file pollutes downstream namespaces that include that file directly or even indirectly. This can be cumbersome and lead to nifty naming conflicts that cause unclear selection of classes or ADL lookup issues. So one just avoids this as good practice and we did not do it in many places anyway. | |||||
2019-09-11 | Source & Tools: No EOL Whitespaces | 5 | -7/+7 | ||
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. Cleaned them up for the `Source/`, `Examples/` and `Tools/` directory with the following bash one-liner: ```bash find . -type f -not -path './.git*' \ -exec sed -i 's/[[:blank:]]*$//' {} \; ``` Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ``` | |||||
2019-09-06 | Merge branch 'dev' into PortingFortranPML_To_CPP_CUDA | 7 | -71/+231 | ||
2019-09-06 | Additional single-kernel changes | 1 | -44/+18 | ||
2019-09-03 | Merge branch 'dev' into RZgeometry | 1 | -1/+0 | ||
2019-09-03 | Merge branch 'dev' into RZgeometry | 2 | -7/+54 | ||
2019-08-31 | back to defining imaginary number in each routine... | 1 | -1/+1 | ||
2019-08-31 | Define imaginary number I in MathConst | 1 | -1/+1 | ||
2019-08-31 | move WarpX_Complex.H to Source/Utils | 2 | -28/+0 | ||
2019-08-30 | Merge branch 'dev' into picsar_cleanup | 1 | -3/+50 | ||
2019-08-30 | Use single kernel synthax | 1 | -22/+12 | ||
2019-08-30 | Merge branch 'dev' into PortingFortranPML_To_CPP_CUDA | 3 | -76/+103 | ||
2019-08-30 | Merge branch 'dev' into merged_overlap_pml | 2 | -2/+2 | ||
2019-08-29 | Avoid compilation of PICSAR spectral solver | 2 | -2/+2 | ||
2019-08-29 | Merge branch 'dev' into picsar_cleanup | 1 | -16/+16 | ||
2019-08-29 | Merge branch 'dev' into merged_overlap_pml | 2 | -56/+40 | ||
2019-08-29 | Avoid compilation of PICSAR spectral solver | 2 | -2/+2 | ||
2019-08-29 | Removed useless variables in PML Exchange functions | 1 | -1/+1 | ||
2019-08-29 | Bug fix of RZgeometry from merge with dev | 1 | -2/+2 | ||
2019-08-29 | layout corrections | 1 | -2/+2 | ||
2019-08-28 | Added shift for the sigma functions | 1 | -5/+18 | ||
2019-08-28 | Merge branch 'dev' into RZgeometry | 1 | -16/+16 | ||
2019-08-28 | Changed macro WARPX_DIM_2D to WARPX_DIM_XZ for clarity | 1 | -16/+16 | ||
2019-08-28 | remove unnecessary references and clean function names | 1 | -3/+3 | ||
2019-08-27 | Call C++ functions | 1 | -19/+33 | ||
2019-08-26 | Clean up of RZ mutlimode, mostly removing imaginary part of mode 0 | 2 | -34/+34 | ||
2019-08-22 | Merge branch 'dev' into RZgeometry | 1 | -42/+24 | ||
2019-08-21 | Merge branch 'dev' into picsar_cleanup | 1 | -40/+24 | ||
2019-08-21 | Code cleanup + add test | 1 | -1/+0 | ||
2019-08-21 | Various bug fixes for RZ multimode | 2 | -15/+13 | ||
2019-08-21 | Merge branch 'dev' into merged_overlap_pml | 16 | -237/+1074 | ||
2019-08-21 | Cleanup PICSAR reference and fortran files | 1 | -2/+2 | ||
2019-08-20 | merge kernels | 1 | -40/+24 | ||
2019-08-19 | Implemented inverse volume scaling of J for RZ multimode in C++ | 1 | -8/+73 | ||
2019-08-19 | Implemented RZ multimode field push in C++ | 2 | -31/+137 | ||
2019-08-16 | Moved WarpX_Complex.H to Utils | 5 | -30/+24 | ||
2019-08-13 | Fixing bugs for 2D implementation | 1 | -2/+4 | ||
2019-08-13 | merged dev branch and ported pml_F to cpp for the ckc solver | 11 | -129/+933 | ||
2019-08-13 | Added CKC kerneles for magnetic push with PML and F_fab | 1 | -41/+108 | ||
2019-08-08 | Moved loop over ncomps into ApplyInverseVolumeScalingToChargeDensity | 1 | -3/+3 | ||