Skip to content

Commit

Permalink
#0: Prefixed with std::
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarwalTT committed Oct 28, 2024
1 parent 58635d7 commit 307033c
Show file tree
Hide file tree
Showing 2 changed files with 263 additions and 261 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ inline std::pair<std::vector<uint32_t>, std::vector<uint32_t>> create_runtime_ar
"Number of unique runtime args and common runtime args exceeds the maximum limit of {} runtime args",
tt::tt_metal::max_runtime_args);

vector<uint32_t> common_rt_args;
std::vector<uint32_t> common_rt_args;
for (uint32_t i = 0; i < num_common_rt_args; i++) {
common_rt_args.push_back(common_base + i);
}

vector<uint32_t> unique_rt_args;
std::vector<uint32_t> unique_rt_args;
for (uint32_t i = 0; i < num_unique_rt_args; i++) {
unique_rt_args.push_back(unique_base + i);
}
Expand Down
Loading

0 comments on commit 307033c

Please sign in to comment.