diff options
author | David Shah <davey1576@gmail.com> | 2019-04-16 16:29:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 16:29:26 +0100 |
commit | 037e13b8839ba2112fba6bfade7d282335a93a4a (patch) | |
tree | f06bfebf31525a8994d578ffa01bdbfc91b28579 /common | |
parent | 250c914763b19fac6fc0d44bc4e6d1d6c3dd3d10 (diff) | |
parent | c1cc356bb0790d9e55194bd4b9a0cd2fa796d7b9 (diff) | |
download | nextpnr-037e13b8839ba2112fba6bfade7d282335a93a4a.tar.gz nextpnr-037e13b8839ba2112fba6bfade7d282335a93a4a.tar.bz2 nextpnr-037e13b8839ba2112fba6bfade7d282335a93a4a.zip |
Merge pull request #267 from noopwafel/lock-for-timing
timing_opt: Add locks to optimise()
Diffstat (limited to 'common')
-rw-r--r-- | common/timing_opt.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/timing_opt.cc b/common/timing_opt.cc index c0968db7..898222ab 100644 --- a/common/timing_opt.cc +++ b/common/timing_opt.cc @@ -84,6 +84,7 @@ class TimingOptimiser bool optimise() { log_info("Running timing-driven placement optimisation...\n"); + ctx->lock(); if (ctx->verbose) timing_analysis(ctx, false, true, false, false); for (int i = 0; i < 30; i++) { @@ -96,6 +97,7 @@ class TimingOptimiser if (ctx->verbose) timing_analysis(ctx, false, true, false, false); } + ctx->unlock(); return true; } |