Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-11 | typo | 1 | -1/+1 | ||
2019-09-11 | reorder barges | 1 | -2/+2 | ||
2019-09-11 | Update README.md | 1 | -0/+3 | ||
2019-09-11 | Docs: No EOL Whitespaces | 14 | -134/+134 | ||
End-of-line (EOL) whitespaces are verbose and increase diffs and merge conflicts over time. There is a notable exception to this rule, as two EOL white spaces in Markdown (`.md`) files introduce a soft-break (newline without paragraph). Cleaned them up for the `Docs/` 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-11 | Source & Tools: No EOL Whitespaces | 80 | -1183/+1182 | ||
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-10 | Cleanup: Include Order | 13 | -52/+57 | ||
A typical include order in C++ is: - "module header" (local header) - "own headers" (WarpX) - <close library headers> (AMReX) - <other third party headers> (e.g. omp) - <stdlib headers> This avoids that a "forgotten include" will silently compile in some compilers and crash in others (because it will crash in all). References: - https://llvm.org/docs/CodingStandards.html#include-style - https://include-what-you-use.org | |||||
2019-09-10 | add restrict to pointer parameters of laser functions | 3 | -22/+23 | ||
2019-09-10 | make function declaration and definition consistent on restrict | 1 | -2/+2 | ||
2019-09-10 | fix laser for gpu | 2 | -24/+41 | ||
2019-09-10 | Clean Up Deposit on Main | 6 | -20/+18 | ||
Just some small renamings, doc strings and clean-ups for deposit on main grid. | |||||
2019-09-09 | Particles: gather_from_main_grid | 5 | -4/+39 | ||
Support gather for individual particle species from the main grid. Very much based on the similar option for deposition :) | |||||
2019-09-09 | Update CONTRIBUTING.md | 1 | -1/+2 | ||
2019-09-06 | Update CoriGPU build instructions | 1 | -4/+5 | ||
2019-09-06 | Updated Python particles interface to allow refined levels | 5 | -74/+72 | ||
2019-09-06 | Updated Python fields interface to work with refinement | 2 | -12/+120 | ||
2019-09-06 | fix typo in CKC PML | 1 | -1/+1 | ||
2019-09-04 | add doc entry for override_sync_int | 1 | -0/+7 | ||
2019-09-04 | Fixed Langmuir_rz_multimode regression test | 2 | -3/+3 | ||
2019-09-04 | Fix ions name in langmuir_PICMI_rz_multimode_analyze.py | 1 | -1/+1 | ||
2019-09-04 | change to disable override sync if warpx.override_sync_int <= 0 | 1 | -2/+2 | ||
2019-09-04 | remove owner masks because they have not been used anymore | 3 | -36/+0 | ||
2019-09-04 | add parameter warpx.override_sync_int=10 | 3 | -1/+9 | ||
2019-09-04 | The Travis test needs to install mpi4py | 1 | -1/+1 | ||
2019-09-04 | add laser particles on level 0 instead of max level | 1 | -1/+4 | ||
2019-09-04 | Implemented the parallel version of the Python MultiFab wrapper | 1 | -2/+38 | ||
2019-09-04 | smaller tolerance for subcycling reg test | 1 | -1/+1 | ||
2019-09-04 | do not dump magnetic field for rz langmuir test | 1 | -0/+1 | ||
2019-09-04 | do not dump zero fields for reg tests | 1 | -2/+5 | ||
2019-09-04 | Fixed RZ input files | 3 | -4/+4 | ||
2019-09-04 | fix makefile | 1 | -6/+6 | ||
2019-09-04 | remove a line that makes regression test script crash | 1 | -1/+0 | ||
2019-09-04 | set relative tolerance to 2.e-5 instead of 1.e-5 | 1 | -3/+3 | ||
2019-09-04 | print errors | 1 | -0/+18 | ||
2019-09-04 | turn comparison off for NCI corrector | 1 | -0/+1 | ||
2019-09-04 | turn off OpenMP for regression tests using 1 thread | 1 | -2/+2 | ||
2019-09-04 | add tolerance to restart regression test | 1 | -1/+2 | ||
2019-09-04 | Switch to Python3 for travis tests | 1 | -3/+3 | ||
2019-09-04 | Protect against bug in some versions of numpy | 1 | -2/+10 | ||
2019-09-04 | do not check fields that are zeros, as they are not dumped | 1 | -9/+1 | ||
2019-09-04 | no OpenMP threading for ionization tests | 1 | -2/+2 | ||
2019-09-03 | Reactivate 2D PSATD tests | 1 | -37/+36 | ||
2019-09-03 | fix typo in doc | 1 | -1/+1 | ||
2019-09-03 | move math function wrappers to WarpX_Complex.H | 4 | -37/+37 | ||