Skip to content

Commit 48dc7f1

Browse files
committed
Merge remote-tracking branch 'origin/master' into pdn-unique
2 parents 2b65ef1 + fd416f6 commit 48dc7f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+9107
-443
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ bazel_dep(name = "bazel-orfs")
162162
# To bump version, run: bazelisk run @bazel-orfs//:bump
163163
git_override(
164164
module_name = "bazel-orfs",
165-
commit = "aacba96353744e059284a40175b74934a370e5c0",
165+
commit = "e2749923bad0203342d1041f8d01c3514d262402",
166166
remote = "https://github.com/The-OpenROAD-Project/bazel-orfs.git",
167167
)
168168

@@ -171,10 +171,10 @@ orfs = use_extension("@bazel-orfs//:extension.bzl", "orfs_repositories")
171171
# To bump version, run: bazelisk run @bazel-orfs//:bump
172172
orfs.default(
173173
# Official image https://hub.docker.com/r/openroad/orfs/tags
174-
image = "docker.io/openroad/orfs:v3.0-4091-gc1e9016cf",
174+
image = "docker.io/openroad/orfs:v3.0-4119-gb2918bafb",
175175
# Use OpenROAD of this repo instead of from the docker image
176176
openroad = "//:openroad",
177-
sha256 = "4e4daf718eb0281738f6f50ae6bb17445fae0c75a30f6570adda1ce6d2dd2308",
177+
sha256 = "6e3228200ec04904d2c912a551ba440d17a4ac1e05fad8ac2d7be35513bfeea4",
178178
)
179179
use_repo(orfs, "com_github_nixos_patchelf_download")
180180
use_repo(orfs, "docker_orfs")

MODULE.bazel.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bazel/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ RUN apt-get -y update \
2929
python3 \
3030
python3-yaml \
3131
time
32+
33+
RUN groupadd -g 9000 user \
34+
&& useradd -u 9000 -g 9000 -m -s /bin/bash user
35+
USER user

src/OpenRoad.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
#include "dft/MakeDft.hh"
3535
#include "dpl/MakeOpendp.h"
3636
#include "dpl/Opendp.h"
37+
#include "drt/MakeTritonRoute.h"
38+
#include "drt/TritonRoute.h"
3739
#include "dst/Distributed.h"
3840
#include "dst/MakeDistributed.h"
3941
#include "est/EstimateParasitics.h"
@@ -81,8 +83,6 @@
8183
#include "stt/MakeSteinerTreeBuilder.h"
8284
#include "tap/MakeTapcell.h"
8385
#include "tap/tapcell.h"
84-
#include "triton_route/MakeTritonRoute.h"
85-
#include "triton_route/TritonRoute.h"
8686
#include "upf/MakeUpf.h"
8787
#include "utl/CallBackHandler.h"
8888
#include "utl/Logger.h"

0 commit comments

Comments
 (0)