diff options
author | 2021-03-02 16:23:02 -0800 | |
---|---|---|
committer | 2021-03-02 16:23:02 -0800 | |
commit | 3f03644f7c880572be92aeee493175b9a77fb619 (patch) | |
tree | 81bdddd99bc0d1c502caabc26c8e42e757e5df17 /Source/Utils/WarpXAlgorithmSelection.cpp | |
parent | 2c526b920c3bbf4a7d896f909fd46485c55f7324 (diff) | |
download | WarpX-3f03644f7c880572be92aeee493175b9a77fb619.tar.gz WarpX-3f03644f7c880572be92aeee493175b9a77fb619.tar.zst WarpX-3f03644f7c880572be92aeee493175b9a77fb619.zip |
GPU clock timer for measuring load balance costs (#1406)
* merge
* wip
* namespace
* eol
* cost
* eol
* fix
* eol
Diffstat (limited to 'Source/Utils/WarpXAlgorithmSelection.cpp')
-rw-r--r-- | Source/Utils/WarpXAlgorithmSelection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Utils/WarpXAlgorithmSelection.cpp b/Source/Utils/WarpXAlgorithmSelection.cpp index 869f3b462..76cdb4653 100644 --- a/Source/Utils/WarpXAlgorithmSelection.cpp +++ b/Source/Utils/WarpXAlgorithmSelection.cpp @@ -58,6 +58,7 @@ const std::map<std::string, int> gathering_algo_to_int = { const std::map<std::string, int> load_balance_costs_update_algo_to_int = { {"timers", LoadBalanceCostsUpdateAlgo::Timers }, + {"gpuclock", LoadBalanceCostsUpdateAlgo::GpuClock }, {"heuristic", LoadBalanceCostsUpdateAlgo::Heuristic }, {"default", LoadBalanceCostsUpdateAlgo::Timers } }; |