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

qwen3-coder:30b | RAG off

06_reset_domain_crossing / task_61 | ordered_reset_ctrl

benchmarkilyasov
task_idilyasov/06_reset_domain_crossing/task_61
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260426_175047_007550_9b8266

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

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

Samples

sample run extract_ok syntax_ok functional_ok openlane_ok final_success failure_stage failure_reason details
sample_1 run_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_1
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_2
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_3
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

reg sync_a_rst_sync1, sync_a_rst_sync2;
reg sync_a_init_sync1, sync_a_init_sync2;
reg sync_a_ready_sync1, sync_a_ready_sync2;

// Synchronize arst_n to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_rst_sync1 <= 1'b0;
        sync_a_rst_sync2 <= 1'b0;
    end else begin
        sync_a_rst_sync1 <= 1'b1;
        sync_a_rst_sync2 <= sync_a_rst_sync1;
    end
end

// Synchronize a_init_done to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_init_sync1 <= 1'b0;
        sync_a_init_sync2 <= 1'b0;
...
functional details
[stdout]
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_4
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_5
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

reg sync_a_rst_sync1, sync_a_rst_sync2;
reg sync_a_init_sync1, sync_a_init_sync2;
reg sync_a_ready_sync1, sync_a_ready_sync2;

// Synchronize arst_n to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_rst_sync1 <= 1'b0;
        sync_a_rst_sync2 <= 1'b0;
    end else begin
        sync_a_rst_sync1 <= 1'b1;
        sync_a_rst_sync2 <= sync_a_rst_sync1;
    end
end

// Synchronize a_init_done to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_init_sync1 <= 1'b0;
        sync_a_init_sync2 <= 1'b0;
...
functional details
[stdout]
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_6
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_7
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_8
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_9
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

// Synchronizer for arst_n
reg arst_sync1, arst_sync2;

always @(posedge clk_a) begin
    arst_sync1 <= arst_n;
    arst_sync2 <= arst_sync1;
end

// rst_a_n logic
always @(posedge clk_a) begin
    if (!arst_n)
        rst_a_n_reg <= 0;
    else if (arst_sync2)
        rst_a_n_reg <= 1;
end

// Synchronizer for a_init_done
reg a_init_sync1, a_init_sync2;

always @(posedge clk_b) begin
...
functional details
[stdout]
ERROR: resets were not asserted at power-up.
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
ERROR: asynchronous reset assertion did not immediately reset both domains.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
    "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_20260426_175047_007550_9b8266 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260426_175047_007550_9b8266__sample_10
generated.v preview
module ordered_reset_ctrl (
    input clk_a,
    input clk_b,
    input arst_n,
    input a_init_done,
    output rst_a_n,
    output rst_b_n
);

reg rst_a_n_reg;
reg rst_b_n_reg;

reg sync_a_rst_sync1, sync_a_rst_sync2;
reg sync_a_init_sync1, sync_a_init_sync2;
reg sync_a_ready_sync1, sync_a_ready_sync2;

// Synchronize arst_n to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_rst_sync1 <= 1'b0;
        sync_a_rst_sync2 <= 1'b0;
    end else begin
        sync_a_rst_sync1 <= 1'b1;
        sync_a_rst_sync2 <= sync_a_rst_sync1;
    end
end

// Synchronize a_init_done to clk_a domain
always @(posedge clk_a or negedge arst_n) begin
    if (!arst_n) begin
        sync_a_init_sync1 <= 1'b0;
        sync_a_init_sync2 <= 1'b0;
...
functional details
[stdout]
ERROR: domain A did not release reset after two clk_a edges.
ERROR: domain B did not release after the second clk_b stage.
TEST_FAILED
/workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: domain A did not release reset after two clk_a edges.",
    "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
}