Skip to content

Commit

Permalink
Revoking work in progress for instance nets at elaboration time (EDA-…
Browse files Browse the repository at this point in the history
…2699) (#1541)

* Revoking work in progress for instance nets https://rapidsilicon.atlassian.net/browse/EDA-2699

* Incremented patch version

---------

Co-authored-by: manadher <[email protected]>
Co-authored-by: chungshien-chai <[email protected]>
  • Loading branch information
3 people authored Apr 14, 2024
1 parent ef285cb commit 248bc29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/DeviceModeling/device_instance.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ class device_block_instance {
this->ports_map_[pr.first] = std::make_shared<device_port>(*pr.second);
ports_map_[pr.first]->set_enclosing_instance(this);
}
for (const auto &pr : instaciated_block_ptr_->nets()) {
this->nets_map_[pr.first] = std::make_shared<device_net>(*pr.second);
ports_map_[pr.first]->set_enclosing_instance(this);
std::cout << "Port Net :: " << pr.first << std::endl;
}
// for (const auto &pr : instaciated_block_ptr_->nets()) {
// this->nets_map_[pr.first] = std::make_shared<device_net>(*pr.second);
// ports_map_[pr.first]->set_enclosing_instance(this);
// std::cout << "Port Net :: " << pr.first << std::endl;
// }
}
/**
* @brief Copy constructor.
Expand Down

0 comments on commit 248bc29

Please sign in to comment.