Skip to content

Commit 3b3f036

Browse files
committed
asap7/ethmac_lvt: study placement densities and grt
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
1 parent 6b38aee commit 3b3f036

File tree

4 files changed

+1140
-6
lines changed

4 files changed

+1140
-6
lines changed

flow/BUILD.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,3 +261,9 @@ orfs_flow(
261261
},
262262
)
263263

264+
265+
filegroup(
266+
name = "ethmac_lvt_src",
267+
srcs = glob(include=["designs/src/ethmac_lvt/*.v"]),
268+
visibility = [":__subpackages__"],
269+
)

flow/MODULE.bazel

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""ORFS bazel setup."""
2+
13
module(
24
name = "orfs",
35
version = "0.0.1",
@@ -7,10 +9,31 @@ module(
79
bazel_dep(name = "bazel-orfs")
810
git_override(
911
module_name = "bazel-orfs",
10-
commit = "b12fc7a172d4211315ec36214f872595e084ab25",
12+
commit = "d30e1987275cb54163a4dfde421392c31d0a7148",
1113
remote = "https://github.com/The-OpenROAD-Project/bazel-orfs.git",
1214
)
1315

16+
orfs = use_extension("@bazel-orfs//:extension.bzl", "orfs_repositories")
17+
orfs.default(
18+
# To build an ORFS image from a PR:
19+
# ./build_openroad.sh --latest
20+
#
21+
# Check out the PRs and modify the local repository as needed
22+
# ./build_openroad.sh --no_init
23+
#
24+
# docker tag docker.io/openroad/flow-ubuntu22.04-builder:c46d41 gcr.io/ascenium/orfs-megaboom/flow-ubuntu22.04-builder:c46d41
25+
# docker push gcr.io/ascenium/orfs-megaboom/flow-ubuntu22.04-builder:c46d41
26+
# image = "gcr.io/ascenium/orfs-megaboom/flow-ubuntu22.04-builder:c46d41",
27+
#
28+
# Official image https://hub.docker.com/r/openroad/orfs/tags
29+
image = "docker.io/openroad/orfs:v3.0-2090-g973317c0",
30+
# image = "gcr.io/ascenium/orfs-megaboom/flow-ubuntu22.04-builder:3d2c3d-2",
31+
sha256 = "8b6644d517bcf5083e912be77d1300a92288e5b4d893347f9bc7e0e2471e84d1",
32+
)
33+
use_repo(orfs, "com_github_nixos_patchelf_download")
34+
use_repo(orfs, "docker_orfs")
35+
36+
1437
# Read: https://github.com/The-OpenROAD-Project/bazel-orfs?tab=readme-ov-file#usage
1538
#
1639
# TL;DR
@@ -21,4 +44,3 @@ git_override(
2144
#local_path_override(
2245
# module_name = "bazel-orfs", path = "../bazel-orfs"
2346
#)
24-

0 commit comments

Comments
 (0)