aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing_opt.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/timing_opt.h')
-rw-r--r--common/timing_opt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/timing_opt.h b/common/timing_opt.h
index 60df7df9..746294bb 100644
--- a/common/timing_opt.h
+++ b/common/timing_opt.h
@@ -23,6 +23,10 @@ NEXTPNR_NAMESPACE_BEGIN
struct TimingOptCfg : public Settings
{
+ // The timing optimiser will *only* optimise cells of these types
+ // Normally these would only be logic cells (or tiles if applicable), the algorithm makes little sense
+ // for other cell types
+ std::unordered_set<IdString> cellTypes;
};
extern bool timing_opt(Context *ctx, TimingOptCfg cfg);