06_reset_domain_crossing / task_61 | ordered_reset_ctrl
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.
| 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: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_1
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (rst_a_sync) begin
ready_a_b <= 0;
end else begin
ready_a_b <= a_init_done;
end
end
// Synchronize ready condition into clk_b
reg ready_b_sync;
always @(posedge clk_b) begin
if (rst_a_sync) begin
ready_b_sync <= 0;
end else begin
ready_b_sync <= ready_a_b;
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_2
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (a_init_done) begin
ready_a_b <= rst_a_sync;
end else begin
ready_a_b <= 1'b0;
end
end
// Deassert rst_b_n only when ready condition reaches second synchronizer stage
always @(posedge clk_b) begin
if (ready_a_b) begin
rst_b_n <= 1'b0;
end else begin
rst_b_n <= 1'b1;
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_3
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// Reset synchronizer for domain A
reg rst_a_sync;
always @(posedge clk_a) begin
if (arst_n == 0) begin
rst_a_sync <= 1'b0;
end else begin
rst_a_sync <= rst_a_n;
end
end
// Local reset for domain A
assign rst_a_n = rst_a_sync;
// Ready condition for domain B
reg ready_b;
always @(posedge clk_a) begin
if (a_init_done == 1) begin
ready_b <= rst_a_sync;
end else begin
ready_b <= 1'b0;
end
end
...
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 released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer 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_4 | run_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_4
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (a_init_done) begin
ready_a_b <= rst_a_sync;
end else begin
ready_a_b <= 1'b0;
end
end
// Deassert rst_b_n only when ready condition reaches second synchronizer stage
always @(posedge clk_b) begin
if (ready_a_b) begin
rst_b_n <= 1'b0;
end else begin
rst_b_n <= 1'b1;
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_5
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// Reset synchronizer for domain A
reg rst_a_sync;
always @(posedge clk_a) begin
if (arst_n == 0) begin
rst_a_sync <= 1'b0;
end else begin
rst_a_sync <= rst_a_n;
end
end
// Local reset for domain A
assign rst_a_n = rst_a_sync;
// Ready condition for domain B
reg ready_b;
always @(posedge clk_a) begin
if (a_init_done == 1'b1) begin
ready_b <= rst_a_sync;
end else begin
ready_b <= 1'b0;
end
end
...
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 released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer 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_6 | run_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_6
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// Reset synchronizer for domain A
reg rst_a_sync_1, rst_a_sync_2;
always @(posedge clk_a) begin
rst_a_sync_1 <= arst_n;
rst_a_sync_2 <= rst_a_sync_1;
end
// Local reset for domain A
assign rst_a_n = rst_a_sync_2;
// Ready condition for domain B
reg ready_b;
always @(posedge clk_a) begin
ready_b <= a_init_done & ~rst_a_sync_2;
end
// Reset synchronizer for domain B
reg rst_b_sync_1, rst_b_sync_2;
always @(posedge clk_b) begin
rst_b_sync_1 <= ready_b;
rst_b_sync_2 <= rst_b_sync_1;
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_7
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (a_init_done) begin
ready_a_b <= rst_a_sync;
end else begin
ready_a_b <= 1'b0;
end
end
// Deassert rst_b_n only when ready condition reaches second synchronizer stage
always @(posedge clk_b) begin
if (ready_a_b) begin
rst_b_n <= 1'b0;
end else begin
rst_b_n <= 1'b1;
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_8
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (a_init_done) begin
ready_a_b <= rst_a_sync;
end else begin
ready_a_b <= 1'b0;
end
end
// Deassert rst_b_n only when ready condition reaches second synchronizer stage
always @(posedge clk_b) begin
if (ready_a_b) begin
rst_b_n <= 1'b0;
end else begin
rst_b_n <= 1'b1;
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_9
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// 2-flop reset synchronizer for rst_a_n
reg rst_a_sync;
always @(posedge clk_a) begin
rst_a_sync <= arst_n;
end
// 2-flop reset synchronizer for ready condition
reg ready_a_b;
always @(posedge clk_a) begin
if (a_init_done) begin
ready_a_b <= rst_a_sync;
end else begin
ready_a_b <= 1'b0;
end
end
// 2-flop reset synchronizer for rst_b_n
reg rst_b_sync;
always @(posedge clk_b) begin
if (ready_a_b) begin
rst_b_sync <= 1'b0;
end else begin
rst_b_sync <= 1'b1;
...
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. 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_20260427_200103_669320_45d5dc | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_200103_669320_45d5dc__sample_10
generated.v previewmodule ordered_reset_ctrl(
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
// Reset synchronizer for domain A
reg rst_a_sync;
always @(posedge clk_a) begin
if (arst_n == 0) begin
rst_a_sync <= 1'b0;
end else begin
rst_a_sync <= rst_a_n;
end
end
// Local reset for domain A
assign rst_a_n = rst_a_sync;
// Ready condition for domain B
reg ready_b;
always @(posedge clk_a) begin
if (a_init_done == 1'b1) begin
ready_b <= rst_a_sync;
end else begin
ready_b <= 1'b0;
end
end
...
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 released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer 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
}
|