diff options
author | gatecat <gatecat@ds0.me> | 2021-07-08 16:58:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 16:58:44 +0100 |
commit | 7b62c7fa50dda23321f0e81cd0002e46370fc45c (patch) | |
tree | 3eea19e4b01e4e12b186ce7d571aeeef3cfe4fc5 /fpga_interchange/chipdb.h | |
parent | 6829e4c197758a4bd68449e4843a6b3992ca3723 (diff) | |
parent | b64642fc9919a009fc4c286a15fc255dff549ed5 (diff) | |
download | nextpnr-7b62c7fa50dda23321f0e81cd0002e46370fc45c.tar.gz nextpnr-7b62c7fa50dda23321f0e81cd0002e46370fc45c.tar.bz2 nextpnr-7b62c7fa50dda23321f0e81cd0002e46370fc45c.zip |
Merge pull request #756 from acomodi/fix-clustering-runtime
interchange: reduce run-time to check dedicated interconnect
Diffstat (limited to 'fpga_interchange/chipdb.h')
-rw-r--r-- | fpga_interchange/chipdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpga_interchange/chipdb.h b/fpga_interchange/chipdb.h index fde35e7f..15ef8b07 100644 --- a/fpga_interchange/chipdb.h +++ b/fpga_interchange/chipdb.h @@ -34,7 +34,7 @@ NEXTPNR_NAMESPACE_BEGIN * kExpectedChipInfoVersion */ -static constexpr int32_t kExpectedChipInfoVersion = 11; +static constexpr int32_t kExpectedChipInfoVersion = 12; // Flattened site indexing. // @@ -421,6 +421,7 @@ NPNR_PACKED_STRUCT(struct ClusterPOD { RelSlice<uint32_t> root_cell_types; RelSlice<ChainablePortPOD> chainable_ports; RelSlice<ClusterCellPortPOD> cluster_cells_map; + uint32_t out_of_site_clusters; }); NPNR_PACKED_STRUCT(struct ChipInfoPOD { |