Skip to content

Commit

Permalink
use schematic cell name
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulk29 committed Dec 20, 2024
1 parent 3c1298f commit cc7a815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/quantus/src/pex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ where
None
}
})
.find(|s| s.name.as_str() == self.layout_cell_name.as_str())
.expect("did not find layout cell in pex netlist");
.find(|s| s.name.as_str() == self.schematic.name().as_str())
.expect("did not find cell in pex netlist");

let primitive = spice::Primitive::RawInstanceWithInclude {
cell: self.schematic.name(),
Expand Down

0 comments on commit cc7a815

Please sign in to comment.