Skip to content

Commit

Permalink
orfs: bump
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
  • Loading branch information
oharboe committed Nov 1, 2024
1 parent 2b026fd commit b90d7c2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/build_local_target.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ do
stages=()
if [[ $stage == "synth" ]]; then
stages+=("do-yosys-canonicalize")
stages+=("do-yosys-keep-hierarchy")
stages+=("do-yosys-stats")
stages+=("do-yosys")
stages+=("do-synth")
elif [[ $stage == "grt" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ orfs = use_extension("//:extension.bzl", "orfs_repositories")
orfs.default(
# a local only or remote docker image. Local docker images do not
# have a sha256.
image = "docker.io/openroad/orfs:v3.0-1748-gd59ddd4a",
image = "docker.io/openroad/orfs:v3.0-1755-g18371323",
# Comment out line below for local only docker images
sha256 = "ef53496afa98ca807c55774bead7d9452355eed120b0379ebba566a5c4590d93",
sha256 = "43ce53d1eed2f75857532e1d066eb9d5f78d7cb9bd89646429f3f6dc33aee7b7",
)
use_repo(orfs, "com_github_nixos_patchelf_download")
use_repo(orfs, "docker_orfs")
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ bazel run <target>_<stage>_deps -- <absolute_path>
<absolute_path>/make do-<stage>
```

> **NOTE:** The synthesis stage requires the `do-yosys-canonicalize`, `do-yosys-keep-hierarchy` and `do-yosys` steps to be completed beforehand.
> **NOTE:** The synthesis stage requires the `do-yosys-canonicalize`, `do-yosys-stats` and `do-yosys` steps to be completed beforehand.
> These steps are necessary to generate the required `.rtlil` file for the synthesis stage.
>
> ```bash
> source <orfs_path>/env.sh
>
> bazel run <target>_synth_deps -- <absolute_path>
> <absolute_path>/make do-yosys-canonicalize do-yosys-keep-hierarchy do-yosys do-synth
> <absolute_path>/make do-yosys-canonicalize do-yosys-stats do-yosys do-synth
> ```
### Override BUILD configuration variables
Expand Down Expand Up @@ -453,7 +453,7 @@ Let's assume we want to perform a `floorplan` stage for the `L1MetadataArray` de
bazel run @bazel-orfs//:L1MetadataArray_synth_deps -- `pwd`/build
# Build Synthesis stage for L1MetadataArray target using local ORFS
build/make do-yosys-canonicalize do-yosys-keep-hierarchy do-yosys do-synth
build/make do-yosys-canonicalize do-yosys-stats do-yosys do-synth
# Initialize dependencies for the Floorplan stage for L1MetadataArray target
bazel run @bazel-orfs//:L1MetadataArray_floorplan_deps -- `pwd`/build
Expand Down
2 changes: 1 addition & 1 deletion openroad.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ def _yosys_impl(ctx):
"--old-file",
canon_output.path,
"yosys-dependencies",
"do-yosys-keep-hierarchy",
"do-yosys-stats",
"do-yosys",
"do-synth",
],
Expand Down

0 comments on commit b90d7c2

Please sign in to comment.