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_20260425_215014_451219_c08f66 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:51: error: Sized numeric constant must have a size greater than zero. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_pass;
always @(posedge clk) begin
if (mbist_en) begin
...
syntax details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:51: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:56: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:61: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:66: error: Sized numeric constant must have a size greater than zero. functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:51: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:56: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:61: error: Sized numeric constant must have a size greater than zero. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:66: error: Sized numeric constant must have a size greater than zero. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:51: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:56: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:61: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/generated.v:66: error: Sized numeric constant must have a size greater than zero.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:51: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:56: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:61: error: Sized numeric constant must have a size greater than zero.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:66: error: Sized numeric constant must have a size greater than zero.\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_20260425_215014_451219_c08f66 | 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_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_count;
reg mbist_pass;
always @(posedge clk) begin
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 0x ERROR: functional readback for address 2 failed. Got 0x 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 01 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 01 ERROR: MBIST pattern for address 2 is wrong. Got 01 ERROR: MBIST pattern for address 3 is wrong. Got 01 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_20260425_215014_451219_c08f66 | ok | failed | failed | skipped | failed | syntax | al/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [31:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_pass;
always @(posedge clk) begin
if (mbist_en) begin
...
syntax details[stderr] al/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:56: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:57: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:72: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:73: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:74: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire. 10 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:21: error: func_rdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:7: : func_rdata is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:44: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:49: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:50: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:55: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:56: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:57: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:72: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:73: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:74: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. 10 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "al/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:56: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:57: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:72: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:73: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:74: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire.\n10 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:21: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:7: : func_rdata is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:44: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:49: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:50: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:55: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:56: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:57: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testabilit…
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_4 | run_20260425_215014_451219_c08f66 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_4/generated.v:74: sorry: Assignment to an entire array or to an array slice is not yet supported. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_cycle;
reg mbist_pass;
always @(posedge clk) begin
...
syntax details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_4/generated.v:74: sorry: Assignment to an entire array or to an array slice is not yet supported. 1 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:74: sorry: Assignment to an entire array or to an array slice is not yet supported. 1 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_4/generated.v:74: sorry: Assignment to an entire array or to an array slice is not yet supported.\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:74: sorry: Assignment to an entire array or to an array slice is not yet supported.\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_5 | run_20260425_215014_451219_c08f66 | 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_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_count;
reg mbist_pass;
always @(posedge clk) begin
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 0x ERROR: functional readback for address 2 failed. Got 0x 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 01 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 01 ERROR: MBIST pattern for address 2 is wrong. Got 01 ERROR: MBIST pattern for address 3 is wrong. Got 01 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_20260425_215014_451219_c08f66 | 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_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_cycle;
reg mbist_pass;
always @(posedge clk) begin
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 0x ERROR: functional readback for address 2 failed. Got 0x ERROR: MBIST did not enter busy state after start. ERROR: MBIST busy did not drop when test completed. ERROR: MBIST done pulse missing at completion. ERROR: MBIST falsely reported a failure. ERROR: MBIST done did not pulse for exactly one cycle. ERROR: MBIST pattern for address 0 is wrong. Got 0f ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 0f ERROR: MBIST pattern for address 2 is wrong. Got 0f ERROR: MBIST pattern for address 3 is wrong. Got 0f 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_20260425_215014_451219_c08f66 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_7/generated.v:56: error: mbist_busy Unable to assign to unresolved wires. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_cycle;
reg mbist_pass;
always @(posedge clk) begin
...
syntax details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_7/generated.v:56: error: mbist_busy Unable to assign to unresolved wires. 1 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:56: error: mbist_busy 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_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_7/generated.v:56: error: mbist_busy 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_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:56: error: mbist_busy 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_8 | run_20260425_215014_451219_c08f66 | 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_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_count;
reg mbist_pass;
always @(posedge clk) begin
...
functional details[stdout] ERROR: reset did not initialize the MBIST wrapper correctly. ERROR: functional readback for address 1 failed. Got 0x ERROR: functional readback for address 2 failed. Got 0x 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 01 ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 01 ERROR: MBIST pattern for address 2 is wrong. Got 01 ERROR: MBIST pattern for address 3 is wrong. Got 01 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_20260425_215014_451219_c08f66 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_9/generated.v:39: error: mbist_fail Unable to assign to unresolved wires. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_count;
reg mbist_pass;
always @(posedge clk) begin
...
syntax details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_9/generated.v:39: error: mbist_fail Unable to assign to unresolved wires. 1 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:39: error: mbist_fail 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_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_9/generated.v:39: error: mbist_fail 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_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:39: error: mbist_fail 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_10 | run_20260425_215014_451219_c08f66 | ok | ok | failed | skipped | failed | functional | /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:69: Error: System task/function $reset() is not defined by any module. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260425_215014_451219_c08f66__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
);
// Internal memory
reg [3:0] mem [0:3];
// Functional mode
always @(posedge clk) begin
if (!func_we) begin
func_rdata <= mem[func_addr];
end else begin
mem[func_addr] <= func_wdata;
end
end
// MBIST mode
reg mbist_active;
reg mbist_count;
reg mbist_pass;
always @(posedge clk) begin
...
functional details[stderr] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:69: Error: System task/function $reset() is not defined by any module. [stdout] /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_10/functional/generated.out: Program not runnable, 1 errors. synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:69: Error: System task/function $reset() is not defined by any module.\n",
"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
}
|