Skip to content

Conversation

@openroad-ci
Copy link
Collaborator

No description provided.

osamahammad21 and others added 30 commits July 24, 2025 19:30
Signed-off-by: osamahammad21 <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
Signed-off-by: Osama <[email protected]>
eder-matheus and others added 16 commits November 11, 2025 16:31
Signed-off-by: Eder Monteiro <[email protected]>
This reverts commit d6083e8.

Signed-off-by: Eder Monteiro <[email protected]>
This reverts commit 9279035.

Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: osamahammad21 <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
Signed-off-by: Eder Monteiro <[email protected]>
@eder-matheus
Copy link
Contributor

Updates on design metrics here: The-OpenROAD-Project/OpenROAD-flow-scripts#3681

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clang-tidy made some suggestions


const frCoord base_idxX = coord_x / (frCoord) xgp.getSpacing();
const frCoord base_idxY = coord_y / (frCoord) ygp.getSpacing();
std::set<frCoord> x_indices{base_idxX};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "std::set" is directly included [misc-include-cleaner]

src/drt/src/db/obj/frBlock.h:8:

- #include <string>
+ #include <set>
+ #include <string>

std::vector<odb::Point> sol;
for (auto& x : x_indices) {
for (auto& y : y_indices) {
sol.push_back(odb::Point(x, y));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: use emplace_back instead of push_back [modernize-use-emplace]

Suggested change
sol.push_back(odb::Point(x, y));
sol.emplace_back(x, y);

}),
insts_.end());
nets_.erase(std::remove_if(nets_.begin(),
nets_.end(),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: use a ranges version of this algorithm [modernize-use-ranges]

Suggested change
nets_.end(),
nets_.erase(std::ranges::remove_if(nets_,
,

}
odb::dbMasterType getMasterType() { return masterType_; }
bool hasPinAccessUpdate() const { return !updated_pa_indices_.empty(); }
const std::set<int>& getUpdatedPAIndices() const
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "std::set" is directly included [misc-include-cleaner]

src/drt/src/db/obj/frMaster.h:7:

- #include <string>
+ #include <set>
+ #include <string>

const auto inst_it = insts_set_.find(inst);
if (inst_it == insts_set_.end()) {
logger_->error(
DRT, 9419, "Inst {} not found in insts_set_", inst->getName());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: no header providing "drt::DRT" is directly included [misc-include-cleaner]

src/drt/src/pa/FlexPA_row_pattern.cpp:21:

- #include "frProfileTask.h"
+ #include "frBaseTypes.h"
+ #include "frProfileTask.h"

Signed-off-by: Eder Monteiro <[email protected]>
@maliberty maliberty requested review from osamahammad21 and removed request for maliberty November 29, 2025 03:28
osamahammad21
osamahammad21 previously approved these changes Dec 1, 2025
@osamahammad21 osamahammad21 dismissed their stale review December 1, 2025 12:54

Pending on ISPD CI to pass

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants