Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed May 27, 2022
1 parent e4225b2 commit f6c26b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_placement_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ Status MinimizeIoTimePlacement(const std::vector<size_t> &blob_sizes,
int ij = i * num_targets + j + 1;
std::string var_name {"blob_dst_" + std::to_string(i) + "_" +
std::to_string(j)};
// total umber of variables = number of blobs * number of targets.
// total number of variables = number of blobs * number of targets.
glp_set_col_name(lp, ij, var_name.c_str());
glp_set_col_bnds(lp, ij, GLP_DB, 0.0, 1.0);
ia[ij] = i+1, ja[ij] = j+1, ar[ij] = 1.0; // var[i][j] = 1.0
Expand Down

0 comments on commit f6c26b4

Please sign in to comment.