aboutsummaryrefslogtreecommitdiffstats
path: root/common/place/parallel_refine.cc
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-07-08 15:03:07 +0200
committerGitHub <noreply@github.com>2022-07-08 15:03:07 +0200
commit664cec54b92844745e21a4e86dcf8e3cca09d781 (patch)
tree004f2b14ed5a3b0584c4998d9f0a5598cc52ab28 /common/place/parallel_refine.cc
parent86396c41d64d2583ec1dffca4298e83d927f0762 (diff)
parent09e388f453d9cf998391495349c88e5478b62e34 (diff)
downloadnextpnr-664cec54b92844745e21a4e86dcf8e3cca09d781.tar.gz
nextpnr-664cec54b92844745e21a4e86dcf8e3cca09d781.tar.bz2
nextpnr-664cec54b92844745e21a4e86dcf8e3cca09d781.zip
Merge pull request #999 from YosysHQ/gatecat/pseudocell-api
netlist: Add PseudoCell API
Diffstat (limited to 'common/place/parallel_refine.cc')
-rw-r--r--common/place/parallel_refine.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/place/parallel_refine.cc b/common/place/parallel_refine.cc
index de71b8e0..0fb99be5 100644
--- a/common/place/parallel_refine.cc
+++ b/common/place/parallel_refine.cc
@@ -390,6 +390,8 @@ struct ParallelRefine
// Setup fast bels map
pool<IdString> cell_types_in_use;
for (auto &cell : ctx->cells) {
+ if (cell.second->isPseudo())
+ continue;
IdString cell_type = cell.second->type;
cell_types_in_use.insert(cell_type);
if (cell.second->cluster != ClusterId())