05_dft_testability / task_53 | mbist_ram_wrapper
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из 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 | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_53/sample_1/generated.v:25: error: mbist_done Unable to assign to unresolved wires. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_1
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_53/sample_1/generated.v:25: error: mbist_done Unable to assign to unresolved wires. 1 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:25: error: mbist_done Unable to assign to unresolved wires. 1 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_53/sample_1/generated.v:25: error: mbist_done Unable to assign to unresolved wires.\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:25: error: mbist_done Unable to assign to unresolved wires.\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_2
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_3
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_4
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_5
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_6
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_7
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_8
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_9
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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: reset did not initialize the MBIST wrapper correctly. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_200103_669320_45d5dc__sample_10
generated.v previewmodule mbist_ram_wrapper(
input clk,
input rst_n,
input func_we,
input [1:0] func_addr,
input [7:0] func_wdata,
output reg [7:0] func_rdata,
input mbist_en,
input mbist_start,
output reg mbist_busy,
output reg mbist_done,
output reg mbist_fail
);
reg [3:0] mem;
reg mbist_state;
reg mbist_cycle;
always @(posedge clk) begin
if (!rst_n) begin
mem <= 4'b0;
mbist_state <= 0;
mbist_cycle <= 0;
mbist_busy <= 0;
mbist_done <= 0;
mbist_fail <= 0;
end else begin
if (!mbist_en) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 00 ERROR: functional readback for address 2 failed. Got 00 ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST pattern for address 0 is wrong. Got 00 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00 ERROR: MBIST pattern for address 2 is wrong. Got 00 ERROR: MBIST pattern for address 3 is wrong. Got 00 ERROR: functional mode did not recover after MBIST. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
"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
}
|