diff options
author | 2019-08-21 08:03:56 -0700 | |
---|---|---|
committer | 2019-08-21 08:08:10 -0700 | |
commit | 5bd07149d39ed3727e81d63d03924953594a2362 (patch) | |
tree | 7ee1bb011cfb48f45967c3238a911cb5f88ee080 /Source/Utils/WarpXAlgorithmSelection.cpp | |
parent | fb850f42139f2be8bb312e37a9f08fc1347c4d7c (diff) | |
download | WarpX-5bd07149d39ed3727e81d63d03924953594a2362.tar.gz WarpX-5bd07149d39ed3727e81d63d03924953594a2362.tar.zst WarpX-5bd07149d39ed3727e81d63d03924953594a2362.zip |
Cleanup PICSAR reference and fortran files
Diffstat (limited to 'Source/Utils/WarpXAlgorithmSelection.cpp')
-rw-r--r-- | Source/Utils/WarpXAlgorithmSelection.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Utils/WarpXAlgorithmSelection.cpp b/Source/Utils/WarpXAlgorithmSelection.cpp index 842085a36..24e55a77f 100644 --- a/Source/Utils/WarpXAlgorithmSelection.cpp +++ b/Source/Utils/WarpXAlgorithmSelection.cpp @@ -23,9 +23,6 @@ const std::map<std::string, int> particle_pusher_algo_to_int = { const std::map<std::string, int> current_deposition_algo_to_int = { {"esirkepov", CurrentDepositionAlgo::Esirkepov }, {"direct", CurrentDepositionAlgo::Direct }, -#if (!defined AMREX_USE_GPU)&&(AMREX_SPACEDIM == 3) // Only available on CPU and 3D - {"direct-vectorized", CurrentDepositionAlgo::DirectVectorized }, -#endif {"default", CurrentDepositionAlgo::Esirkepov } }; @@ -36,12 +33,7 @@ const std::map<std::string, int> charge_deposition_algo_to_int = { const std::map<std::string, int> gathering_algo_to_int = { {"standard", GatheringAlgo::Standard }, -#ifndef AMREX_USE_GPU // Only available on CPU - {"vectorized", GatheringAlgo::Vectorized }, - {"default", GatheringAlgo::Vectorized } -#else {"default", GatheringAlgo::Standard } -#endif }; |