Skip to content

Commit

Permalink
test: do not generate abstract for grt until ABSTRACT_SOURCE=5_1_grt …
Browse files Browse the repository at this point in the history
…is fixed in ORFS

Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Oct 22, 2024
1 parent 17bc2b3 commit 89bb388
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fail-fast: false
matrix:
STAGE_TARGET:
- "//sram:top_mix_grt"
- "//sram:top_mix_cts"
- "tag_array_64x184_generate_abstract"
- "tag_array_64x184_report"
- "lb_32x128_generate_abstract"
Expand Down
12 changes: 6 additions & 6 deletions sram/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FAST_SETTINGS = {

[orfs_flow(
name = "sdq_17x64",
abstract_stage = "grt" if variant == "base" else "floorplan",
abstract_stage = "cts" if variant == "base" else "floorplan",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :fakeram/constraints-sram.sdc)",
"CORE_UTILIZATION": "20",
Expand Down Expand Up @@ -96,7 +96,7 @@ genrule(

orfs_flow(
name = "top",
abstract_stage = "grt",
abstract_stage = "cts",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :fakeram/constraints-sram.sdc)",
"DIE_AREA": "0 0 80 80",
Expand All @@ -122,7 +122,7 @@ orfs_macro(
# buildifier: disable=duplicated-name
orfs_flow(
name = "top",
abstract_stage = "grt",
abstract_stage = "cts",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :fakeram/constraints-sram.sdc)",
"DIE_AREA": "0 0 30 30",
Expand Down Expand Up @@ -179,7 +179,7 @@ orfs_run(
# buildifier: disable=duplicated-name
orfs_flow(
name = "top",
abstract_stage = "grt",
abstract_stage = "cts",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :fakeram/constraints-sram.sdc)",
"MACRO_PLACEMENT_TCL": "$(location :macro_placement.tcl)",
Expand All @@ -200,7 +200,7 @@ orfs_flow(
# buildifier: disable=duplicated-name
orfs_flow(
name = "sdq_17x64",
abstract_stage = "grt",
abstract_stage = "cts",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :megaboom/constraints-sram.sdc)",
"CORE_UTILIZATION": "20",
Expand All @@ -219,7 +219,7 @@ orfs_flow(
# buildifier: disable=duplicated-name
orfs_flow(
name = "top",
abstract_stage = "grt",
abstract_stage = "cts",
arguments = FAST_SETTINGS | {
"SDC_FILE": "$(location :megaboom/constraints-top.sdc)",
"DIE_AREA": "0 0 100 100",
Expand Down

0 comments on commit 89bb388

Please sign in to comment.