Skip to content

Commit

Permalink
#2307: Fix invalid format of time field in LBDatafile
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Jun 28, 2024
1 parent 3638817 commit 03d4f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/lb_data_holder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ std::unique_ptr<nlohmann::json> LBDataHolder::rankAttributesToJson() const {
void LBDataHolder::addInitialTask(nlohmann::json& j, std::size_t n) const {
j["tasks"][n]["resource"] = "cpu";
j["tasks"][n]["node"] = vt::theContext()->getNode();
j["tasks"][n]["time"] = 0;
j["tasks"][n]["time"] = 0.0;
outputEntity(
j["tasks"][n]["entity"], ElementIDStruct()
);
Expand Down

0 comments on commit 03d4f7d

Please sign in to comment.