diff options
author | Catherine <whitequark@whitequark.org> | 2022-03-05 16:32:44 +0000 |
---|---|---|
committer | Catherine <whitequark@whitequark.org> | 2022-03-05 16:32:44 +0000 |
commit | aee35768f4002c0a7d96ba79e5aa78632fb41c65 (patch) | |
tree | 7923698a33af14ad7414e73d4b179d41183c4e89 /common | |
parent | 285325ad5bf60b5230789b9e64b4dc76a406c04d (diff) | |
download | nextpnr-aee35768f4002c0a7d96ba79e5aa78632fb41c65.tar.gz nextpnr-aee35768f4002c0a7d96ba79e5aa78632fb41c65.tar.bz2 nextpnr-aee35768f4002c0a7d96ba79e5aa78632fb41c65.zip |
Disable parallel refinement on WebAssembly.
Diffstat (limited to 'common')
-rw-r--r-- | common/command.cc | 2 | ||||
-rw-r--r-- | common/parallel_refine.cc | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc index 56327847..2167deb9 100644 --- a/common/command.cc +++ b/common/command.cc @@ -174,7 +174,9 @@ po::options_description CommandHandler::getGeneralOptions() "placer heap criticality exponent (int, default: 2)"); general.add_options()("placer-heap-timingweight", po::value<int>(), "placer heap timing weight (int, default: 10)"); +#if !defined(__wasm) general.add_options()("parallel-refine", "use new experimental parallelised engine for placement refinement"); +#endif general.add_options()("router2-heatmap", po::value<std::string>(), "prefix for router2 resource congestion heatmaps"); diff --git a/common/parallel_refine.cc b/common/parallel_refine.cc index ea97b852..c2905480 100644 --- a/common/parallel_refine.cc +++ b/common/parallel_refine.cc @@ -18,8 +18,11 @@ */ #include "parallel_refine.h" -#include "fast_bels.h" #include "log.h" + +#if !defined(__wasm) + +#include "fast_bels.h" #include "timing.h" #include "scope_lock.h" @@ -944,3 +947,16 @@ bool parallel_refine(Context *ctx, ParallelRefineCfg cfg) } NEXTPNR_NAMESPACE_END + +#else /* !defined(__wasm) */ + +NEXTPNR_NAMESPACE_BEGIN + +bool parallel_refine(Context *ctx, ParallelRefineCfg cfg) +{ + log_abort(); +} + +NEXTPNR_NAMESPACE_END + +#endif |