Назад к моделям Назад к профилю модели

codegemma:7b | RAG off

03_low_power_design / task_40 | power_aware_fsm

benchmarkilyasov
task_idilyasov/03_low_power_design/task_40
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260427_200103_669320_45d5dc

Что показывает эта страница

Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.

Samples

sample run extract_ok syntax_ok functional_ok openlane_ok final_success failure_stage failure_reason details
sample_1 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_1
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] count;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
        end else begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_2 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_2
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] match_count_reg;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            match_count_reg <= 0;
        end else begin
            if (low_power_mode) begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_3 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_3
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] count;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
        end else begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_4 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_4
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_FIRST = 1;
    localparam WAIT_SECOND = 2;
    localparam WAIT_THIRD = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Data buffer for detecting the sequence
    reg [2:0] data_buffer;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            match_count <= 0;
            data_buffer <= 0;
        end else begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_5 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_5
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_FIRST = 1;
    localparam WAIT_SECOND = 2;
    localparam WAIT_THIRD = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] count;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
        end else begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_6 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_6
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] count;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
        end else begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_7 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_7
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Counter for matching sequence
    reg [7:0] count;

    // Power-gating logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
            cg_en <= 1;
        end else begin
            if (low_power_mode) begin
                state <= SLEEP;
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_8 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_8
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_FIRST = 1;
    localparam WAIT_SECOND = 2;
    localparam WAIT_THIRD = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Match counter
    reg [7:0] match_count_reg;

    // Clock gate enable
    assign cg_en = (state != SLEEP);

    // FSM logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            match_count_reg <= 0;
        end else begin
            if (low_power_mode) begin
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_9 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_9
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Counter for matching sequence
    reg [7:0] count;

    // Power-gating logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
            cg_en <= 1;
        end else begin
            if (low_power_mode) begin
                state <= SLEEP;
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_10 run_20260427_200103_669320_45d5dc ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260427_200103_669320_45d5dc__sample_10
generated.v preview
module power_aware_fsm(
    input clk,
    input rst_n,
    input data_in,
    input low_power_mode,
    output reg [7:0] match_count,
    output reg cg_en
);

    // FSM states
    localparam IDLE = 0;
    localparam WAIT_A = 1;
    localparam WAIT_B = 2;
    localparam WAIT_C = 3;
    localparam SLEEP = 4;

    // FSM state register
    reg [3:0] state;

    // Counter for matching sequence
    reg [7:0] count;

    // Power-gating logic
    always @(posedge clk) begin
        if (rst_n) begin
            state <= IDLE;
            count <= 0;
            match_count <= 0;
            cg_en <= 1;
        end else begin
            if (low_power_mode) begin
                state <= SLEEP;
...
functional details
[stdout]
ERROR: Failed to detect normal '101' sequence. Count is   0
ERROR: clock-gate enable (cg_en) did not drop during sleep mode!
ERROR: Datapath toggled during SLEEP! Power Intent Violation.
LLM failed to isolate operands during low_power_mode.
TEST_FAILED
/workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is   0",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}