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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | _075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:32: error: func_wdata is not a valid l-value in mbist_ram_wrapper. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr][7:0] <= func_wdata;
end
end
assign func_rdata = mem[func_addr][7:0];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes while MBIST owns the memory
if (func_we) begin
func_wdata <= 8'h0;
...
syntax details[stderr] _075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:32: error: func_wdata is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:6: : func_wdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:44: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:54: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:55: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:56: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:57: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:32: error: func_wdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:6: : func_wdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:44: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:54: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:55: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:56: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:57: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:32: error: func_wdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:6: : func_wdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:44: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:54: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:55: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:56: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:57: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/generated.v:12: : mbist_fail is declared here as wire.\n6 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:32: error: func_wdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:6: : func_wdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:44: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:54: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:55: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:56: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:57: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_1/functional/generated.v:12: : mbist_fail is declared here as wire.\n6 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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | 075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:55: error: Unable to bind wire/reg/memory `i' in `mbist_ram_wrapper' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
assign func_rdata = mem[func_addr];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes when MBIST owns the memory
if (func_we) begin
mem[func_addr] <= func_wdata;
...
syntax details[stderr] 075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:55: error: Unable to bind wire/reg/memory `i' in `mbist_ram_wrapper' /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:55: error: Unable to elaborate condition expression. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:62: error: Unable to bind wire/reg/memory `i' in `mbist_ram_wrapper' /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:62: error: Unable to elaborate condition expression. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:73: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:74: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:75: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:76: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:12: : mbist_fail is declared here as wire. 14 error(s) during elaboration. functional details[stderr] t_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:49: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:51: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:55: error: Unable to bind wire/reg/memory `i' in `tb_task_53.dut' /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:55: error: Unable to elaborate condition expression. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:62: error: Unable to bind wire/reg/memory `i' in `tb_task_53.dut' /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:62: error: Unable to elaborate condition expression. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:73: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:74: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:75: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:76: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire. 14 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:55: error: Unable to bind wire/reg/memory `i' in `mbist_ram_wrapper'\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:55: error: Unable to elaborate condition expression.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:62: error: Unable to bind wire/reg/memory `i' in `mbist_ram_wrapper'\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:62: error: Unable to elaborate condition expression.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:73: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:74: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:75: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:76: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/generated.v:12: : mbist_fail is declared here as wire.\n14 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "t_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:41: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:49: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:51: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:55: error: Unable to bind wire/reg/memory `i' in `tb_task_53.dut'\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:55: error: Unable to elaborate condition expression.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:62: error: Unable to bind wire/reg/memory `i' in `tb_task_53.dut'\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:62: error: Unable to elaborate condition expression.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_2…
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_3 | run_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | 32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:73: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (rst_n == 1'b0) begin
// Clear the memory and MBIST state
mem <= '0;
mbist_busy <= 1'b0;
mbist_done <= 1'b0;
mbist_fail <= 1'b0;
end else begin
if (func_we == 1'b1) begin
// Write to the memory
mem[func_addr] <= func_wdata;
end else begin
// Read from the memory
func_rdata <= mem[func_addr];
...
syntax details[stderr] 32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:73: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:81: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:82: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:83: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:84: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:88: error: func_rdata is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:7: : func_rdata is declared here as wire. 18 error(s) during elaboration. functional details[stderr] ashencev__05_dft_testability__task_53/sample_3/functional/generated.v:55: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:56: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:66: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:71: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:72: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:73: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:81: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:82: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:83: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:84: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:88: error: func_rdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:7: : func_rdata is declared here as wire. 18 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:73: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:81: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:82: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:83: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:84: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:88: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/generated.v:7: : func_rdata is declared here as wire.\n18 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "ashencev__05_dft_testability__task_53/sample_3/functional/generated.v:55: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:56: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:66: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:71: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:72: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:73: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:81: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_3/functional/generated.v:82: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/s…
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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | 2200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:57: error: mbist_done is not a valid l-value in mbist_ram_wrapper. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory for 4 entries of 8 bits each
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
assign func_rdata = mem[func_addr];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes while MBIST owns the memory
if (func_we) begin
func_wdata <= 0;
...
syntax details[stderr] 2200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:57: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:58: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:66: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:67: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:68: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:69: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:12: : mbist_fail is declared here as wire. 10 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:32: error: func_wdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:6: : func_wdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:48: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:53: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:56: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:57: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:58: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:66: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:67: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:68: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:69: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/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": "2200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:57: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:58: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:66: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:67: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:68: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/generated.v:69: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/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_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:32: error: func_wdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:6: : func_wdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:48: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:53: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:56: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:57: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:58: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:66: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:67: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_22597…
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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:47: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
assign func_rdata = mem[func_addr];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes while MBIST owns the memory
if (func_we) begin
func_wdata <= 0;
end
...
syntax details[stderr] t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:47: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:49: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:57: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:58: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:59: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:60: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:12: : mbist_fail is declared here as wire. 8 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:31: error: func_wdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:6: : func_wdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:40: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:47: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:49: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:57: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:58: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:59: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:60: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:12: : mbist_fail is declared here as wire. 8 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:47: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:49: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:57: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:58: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:59: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:60: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/generated.v:12: : mbist_fail is declared here as wire.\n8 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:31: error: func_wdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:6: : func_wdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:40: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop0.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:47: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:49: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:57: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:58: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:59: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_5/functional/generated.v:60: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashenc…
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_6 | run_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:31: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
assign func_rdata = mem[func_addr];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes while MBIST owns the memory
if (func_we) begin
mbist_busy <= 1;
end
...
syntax details[stderr] t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:31: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:34: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:58: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:59: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:60: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:61: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:31: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:34: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:58: error: cannot perform a part select on array mem. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:59: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:60: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:61: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "t/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:31: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:34: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:58: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:59: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:60: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:61: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/generated.v:12: : mbist_fail is declared here as wire.\n6 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:31: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:34: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:58: error: cannot perform a part select on array mem.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:59: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:60: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:61: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_6/functional/generated.v:12: : mbist_fail is declared here as wire.\n6 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_7 | run_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | 60426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:7: : func_rdata is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (rst_n == 1'b0) begin
// Clear the memory and MBIST state
mem <= {8{1'b0}};
mbist_busy <= 1'b0;
mbist_done <= 1'b0;
mbist_fail <= 1'b0;
end else begin
if (func_we == 1'b1) begin
// Write to the memory
mem[func_addr] <= func_wdata;
end
// Read from the memory
func_rdata <= mem[func_addr];
...
syntax details[stderr] 60426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:7: : func_rdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:48: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:53: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:59: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:60: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:61: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:12: : mbist_fail is declared here as wire. 11 error(s) during elaboration. functional details[stderr] pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:22: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:23: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:24: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:25: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:32: error: func_rdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7: : func_rdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:41: error: func_rdata is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7: : func_rdata is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:48: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:53: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:59: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:60: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:61: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:12: : mbist_fail is declared here as wire. 11 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "60426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:7: : func_rdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:48: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:53: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:59: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:60: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:61: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/generated.v:12: : mbist_fail is declared here as wire.\n11 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:22: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:23: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:24: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:25: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:32: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7: : func_rdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:41: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7: : func_rdata is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:48: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:53: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sa…
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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | val/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory for 4-entry by 8-bit data
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
assign func_rdata = mem[func_addr];
// MBIST mode
always @(posedge clk) begin
if (mbist_en) begin
// Ignore functional writes while MBIST owns the memory
if (func_we) begin
mbist_busy <= 1;
end
...
syntax details[stderr] val/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:39: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:51: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:61: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:62: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:63: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:31: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:39: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:51: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:61: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:62: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:63: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:12: : mbist_fail is declared here as wire. 6 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "val/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:39: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:51: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:61: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:62: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:63: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/generated.v:12: : mbist_fail is declared here as wire.\n6 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:31: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:39: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:51: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:61: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:62: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:63: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:12: : mbist_fail is declared here as wire.\n6 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_9 | run_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | al/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:10: : mbist_busy is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory for 4 words of 8 bits each
reg [7:0] mem[3:0];
// Functional write logic
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
end
// Functional read logic
assign func_rdata = mem[func_addr];
// MBIST write logic
always @(posedge clk) begin
if (mbist_en && !mbist_busy) begin
// Ignore functional writes while MBIST is active
if (!func_we) begin
...
syntax details[stderr] al/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:76: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:77: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:80: error: mbist_busy is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:81: error: mbist_done is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:82: error: mbist_fail is not a valid l-value in mbist_ram_wrapper. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:12: : mbist_fail is declared here as wire. 12 error(s) during elaboration. functional details[stderr] shencev__05_dft_testability__task_53/sample_9/functional/generated.v:58: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:69: sorry: Assignment to an entire array or to an array slice is not yet supported. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:70: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:71: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:72: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:75: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:76: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:77: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:80: error: mbist_busy is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:10: : mbist_busy is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:81: error: mbist_done is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:11: : mbist_done is declared here as wire. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:82: error: mbist_fail is not a valid l-value in tb_task_53.dut. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire. 12 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "al/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:76: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:77: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:80: error: mbist_busy is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:81: error: mbist_done is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:82: error: mbist_fail is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/generated.v:12: : mbist_fail is declared here as wire.\n12 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "shencev__05_dft_testability__task_53/sample_9/functional/generated.v:58: error: mbist_fail is not a valid l-value in tb_task_53.dut.$ivl_for_loop1.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:69: sorry: Assignment to an entire array or to an array slice is not yet supported.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:70: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:71: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:72: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:12: : mbist_fail is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:75: error: mbist_busy is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:10: : mbist_busy is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:76: error: mbist_done is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:11: : mbist_done is declared here as wire.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:77: error: mbist_fail is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sa…
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_20260426_075435_225972_f32200 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_busy' has already been declared in this scope. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260426_075435_225972_f32200__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 [7:0] func_rdata,
input mbist_en,
input mbist_start,
output mbist_busy,
output mbist_done,
output mbist_fail
);
// Internal memory
reg [7:0] mem[3:0];
// Functional mode
always @(posedge clk) begin
if (func_we) begin
mem[func_addr] <= func_wdata;
end
func_rdata <= mem[func_addr];
end
// MBIST mode
reg mbist_busy, mbist_done, mbist_fail;
always @(posedge clk) begin
if (mbist_en && !mbist_start) begin
mbist_busy <= 1'b0;
mbist_done <= 1'b0;
mbist_fail <= 1'b0;
...
syntax details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_busy' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:10: : It was declared here as a net. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_done' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:11: : It was declared here as a net. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_fail' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:12: : It was declared here as a net. functional details[stderr] /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_busy' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:10: : It was declared here as a net. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_done' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:11: : It was declared here as a net. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_fail' has already been declared in this scope. /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:12: : It was declared here as a net. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_busy' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:10: : It was declared here as a net.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_done' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:11: : It was declared here as a net.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:27: error: 'mbist_fail' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/generated.v:12: : It was declared here as a net.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_busy' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:10: : It was declared here as a net.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_done' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:11: : It was declared here as a net.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:27: error: 'mbist_fail' has already been declared in this scope.\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/pashencev__05_dft_testability__task_53/sample_10/functional/generated.v:12: : It was declared here as a net.\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
}
|