File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1209,11 +1209,12 @@ nesterovDbCbk::nesterovDbCbk(NesterovPlace* nesterov_place)
12091209void NesterovPlace::createCbkGCell (odb::dbInst* db_inst)
12101210{
12111211 auto gcell_index = nbc_->createCbkGCell (db_inst);
1212- for (auto & nesterov : nbVec_) {
1213- // TODO: manage regions, not every NB should create a
1214- // gcell.
1215- nesterov->createCbkGCell (db_inst, gcell_index);
1216- }
1212+ // Always create gcell on top-level
1213+ nbVec_[0 ]->createCbkGCell (db_inst, gcell_index);
1214+ // TODO: create new gcell in its proper region
1215+ // for (auto& nesterov : nbVec_) {
1216+ // nesterov->createCbkGCell(db_inst, gcell_index);
1217+ // }
12171218}
12181219
12191220void NesterovPlace::destroyCbkGCell (odb::dbInst* db_inst)
You can’t perform that action at this time.
0 commit comments