We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3588976 commit e476ed1Copy full SHA for e476ed1
tests/unit/runtime/test_initialization.cc
@@ -546,9 +546,8 @@ void prepareLBDataFiles(const std::string file_name_without_ext) {
546
for (PhaseType i = 0; i < num_phases; i++) {
547
for (auto&& elm : ids[i]) {
548
dh.node_data_[i][elm] = LoadSummary{3};
549
- std::vector<uint64_t> arr = {1};
550
VirtualProxyType proxy = 7;
551
- dh.node_idx_[elm] = std::make_tuple(proxy, arr);
+ dh.node_idx_[elm] = std::make_tuple(proxy, std::vector<uint64_t>{1});
552
}
553
554
0 commit comments