Skip to content

Commit b9482a9

Browse files
committed
bugfix
1 parent 5bca1cc commit b9482a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/osp/bsp/model/BspArchitecture.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class BspArchitecture {
197197
}
198198

199199
void InitializeUniformSendCosts() {
200-
sendCosts_.resize(numberOfProcessors_ * numberOfProcessors_, 1U);
200+
sendCosts_.assign(numberOfProcessors_ * numberOfProcessors_, 1U);
201201
SetSendCostDiagonalToZero();
202202
isNuma_ = false;
203203
}

0 commit comments

Comments
 (0)