Skip to content

Commit

Permalink
#1672: lb: rename P_t statistic
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Mar 22, 2022
1 parent f6fcc83 commit 4505f70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/lb_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ enum struct StatisticQuantity : int8_t {
};

enum struct Statistic : int8_t {
P_l, P_c, P_t,
P_l, P_c, P_w,
O_l, O_c, O_t,
// W_l_min, W_l_max, W_l_avg, W_l_std, W_l_var, W_l_skewness, W_l_kurtosis,
// W_c_min, W_c_max, W_c_avg, W_c_std, W_c_var, W_c_skewness, W_c_kurtosis,
Expand Down
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/lb_type.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ namespace lb {
static std::unordered_map<Statistic,std::string> lb_stat_name_ = {
{Statistic::P_l, std::string{"P_l"}},
{Statistic::P_c, std::string{"P_c"}},
{Statistic::P_t, std::string{"P_t"}},
{Statistic::P_w, std::string{"P_w"}},
{Statistic::O_l, std::string{"O_l"}},
{Statistic::O_c, std::string{"O_c"}},
{Statistic::O_t, std::string{"O_t"}},
Expand Down

0 comments on commit 4505f70

Please sign in to comment.