From ac44383b8a4c0e189f2af6ce34c070e3d250885d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Mon, 21 Oct 2024 23:10:53 +0200 Subject: [PATCH] test: do not generate abstract for grt until ABSTRACT_SOURCE=5_1_grt is fixed in ORFS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Øyvind Harboe --- .github/workflows/ci.yml | 2 +- sram/BUILD | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1759fc2..babb078 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" diff --git a/sram/BUILD b/sram/BUILD index 2bab5f9..55ae339 100644 --- a/sram/BUILD +++ b/sram/BUILD @@ -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", @@ -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", @@ -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", @@ -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)", @@ -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", @@ -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",