05_dft_testability / task_51 | scan_reset_override_reg
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.
| sample | run | extract_ok | syntax_ok | functional_ok | openlane_ok | final_success | failure_stage | failure_reason | details |
|---|---|---|---|---|---|---|---|---|---|
| sample_1 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_1
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= '0;
scan_out <= '0;
end else if (test_mode == 1'b0 && load_en == 1'b1) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= '0;
end else if (test_mode == 1'b0 && load_en == 1'b1) begin
data_out <= {data_in[2:0], scan_in};
end
end
// Test-mode reset override
...
syntax details[stderr] out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:28: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:35: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:37: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:44: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:46: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:10: : scan_out is declared here as wire. 9 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:16: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:17: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:19: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:26: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:35: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:37: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:44: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:46: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:10: : scan_out is declared here as wire. 9 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:28: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:35: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:37: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:44: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:46: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/generated.v:10: : scan_out is declared here as wire.\n9 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:16: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:17: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:19: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:26: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:35: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:37: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_1/functional/ge…
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_1 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_1
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else begin
// Functional mode
if (load_en) begin
data_out <= data_in;
end
// Test-mode reset override
if (test_mode && ~rst_n) begin
scan_out <= 1'b0;
end else begin
// Scan behavior
if (scan_en) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
...
functional details[stdout] ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_2 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:10: : scan_out is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_2
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Internal registers
reg [3:0] data_out_int;
reg scan_out_int;
// Reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode) begin
// Test-mode reset override
data_out <= data_out_int;
scan_out <= scan_out_int;
end else begin
// Functional mode
data_out <= data_in;
scan_out <= 1'b0;
end
end
...
syntax details[stderr] out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:28: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:29: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:54: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:57: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:60: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire. 9 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:20: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:21: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:24: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:25: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:29: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:54: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:57: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:60: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire. 9 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:28: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:29: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:54: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:57: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:60: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/generated.v:9: : data_out is declared here as wire.\n9 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:20: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:21: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:24: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:25: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:29: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:54: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_2/functional/…
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_2 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_2
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 0 && load_en) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
end else if (test_mode == 0 && load_en) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
functional details[stdout] ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_3 | run_20260427_102437_171676_163c0c | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got a |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_3
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode) begin
// Test-mode reset override
if (load_en) begin
data_out <= {data_in[2:0], scan_in};
scan_out <= 1'b0;
end else begin
data_out <= data_out;
scan_out <= 1'b0;
end
end else begin
// Functional mode
if (load_en) begin
data_out <= {data_in[2:0], scan_in};
scan_out <= 1'b0;
end else begin
data_out <= data_out;
...
functional details[stdout] ERROR: functional load failed. Expected D, got a ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. ERROR: functional load after test mode failed. Expected 6, got d TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got a",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_3 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_3
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Internal registers
reg [3:0] data_reg;
reg scan_out_reg;
// Reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_reg <= 4'b0;
scan_out_reg <= 1'b0;
end else if (test_mode & ~scan_en) begin
// Mask reset during scan shift
data_reg <= data_reg;
scan_out_reg <= scan_out_reg;
end else begin
// Normal reset behavior
data_reg <= 4'b0;
scan_out_reg <= 1'b0;
end
end
...
functional details[stdout] ERROR: functional load failed. Expected D, got 0 ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. ERROR: functional load after test mode failed. Expected 6, got 0 TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got 0",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_4 | run_20260427_102437_171676_163c0c | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got a |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_4
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else begin
// Functional mode
if (load_en) begin
data_out <= {data_in[3:0], scan_in};
end
// Test-mode reset override
if (test_mode && ~rst_n) begin
data_out <= 4'b1;
scan_out <= 1'b1;
end
end
end
// Scan behavior
always @(posedge clk or negedge rst_n) begin
...
functional details[stdout] ERROR: functional load failed. Expected D, got a ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. ERROR: functional load after test mode failed. Expected 6, got d TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got a",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_4 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the register. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_4
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else begin
// Functional mode
if (load_en) begin
data_out <= data_in;
end
// Test-mode reset override
if (test_mode & ~rst_n) begin
// Do nothing, keep the current register contents
end
end
end
// Scan behavior
always @(posedge clk or negedge scan_en) begin
if (scan_en) begin
...
functional details[stdout] ERROR: reset did not initialize the register. ERROR: functional load failed. Expected D, got x ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. ERROR: functional reset was not restored when leaving test mode. ERROR: functional load after test mode failed. Expected 6, got 1 TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the register.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_5 | run_20260427_102437_171676_163c0c | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_5
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 1'b0 && load_en == 1'b1) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
end else if (test_mode == 1'b0 && load_en == 1'b1) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
functional details[stdout] ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_5 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_5
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 1'b0 && load_en == 1'b1) begin
data_out <= data_in;
end
end
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
scan_out <= 1'b0;
end else if (test_mode == 1'b1 && scan_en == 1'b1) begin
scan_out <= data_out[3];
end
end
endmodule
functional details[stdout] ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_6 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_6/generated.v:51: syntax error |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_6
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
syntax details[stderr] /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_6/generated.v:51: syntax error I give up. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:1: error: timescale directive cannot be inside a module definition. /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:128: syntax error I give up. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_6/generated.v:51: syntax error\nI give up.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:1: error: timescale directive cannot be inside a module definition.\n/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:128: syntax error\nI give up.\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_6 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_6
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else begin
// Functional mode
if (load_en) begin
data_out <= data_in;
end
// Test-mode reset override
if (test_mode && ~rst_n) begin
scan_out <= 1'b0;
end else begin
// Scan behavior
if (test_mode && scan_en) begin
data_out[3] <= scan_in;
data_out[2:0] <= data_out[2:0];
scan_out <= data_out[3];
end else begin
...
functional details[stdout] ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_7 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | ut/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_7
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
syntax details[stderr] ut/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:37: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:44: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:46: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:53: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:55: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire. 11 error(s) during elaboration. functional details[stderr] a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:17: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:19: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:26: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:35: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:37: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:44: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:46: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:53: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:55: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire. 11 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "ut/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:37: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:44: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:46: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:53: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:55: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/generated.v:9: : data_out is declared here as wire.\n11 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": " a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:17: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:19: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:26: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:28: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:35: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:37: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:44: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testab…
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_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_7
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
end else if (test_mode == 0 && load_en == 1) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
functional details[stdout] ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_8 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:33: error: scan_out is not a valid l-value in scan_reset_override_reg. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_8
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Internal registers
reg [3:0] data_reg;
reg scan_reg;
// Reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_reg <= 4'b0;
scan_reg <= 1'b0;
end else if (test_mode & ~scan_en) begin // Test-mode reset override
data_reg <= data_in;
scan_reg <= scan_in;
end else if (load_en) begin
data_reg <= data_in;
end
end
// Scan behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
...
syntax details[stderr] /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:33: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:35: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:42: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:44: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:46: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire. 5 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:33: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:35: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:42: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:44: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:46: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire. 5 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:33: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:35: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:42: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:44: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:46: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/generated.v:9: : data_out is declared here as wire.\n5 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:33: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:35: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:42: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:44: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:46: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:9: : data_out is declared here as wire.\n5 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_8 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_8
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= '0;
scan_out <= '0;
end else if (test_mode && ~scan_en) begin
// hold the current register contents in test mode with scan_en = 0
data_out <= data_in;
scan_out <= scan_in;
end else if (load_en) begin
// capture data_in into data_out when load_en is asserted and test_mode is 0
data_out <= {data_out[2:0], scan_in};
scan_out <= '0;
end else begin
// retain the current value of data_out in all other cases
data_out <= data_out;
scan_out <= scan_out;
end
end
endmodule
functional details[stdout] ERROR: functional load failed. Expected D, got 0 ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. ERROR: functional load after test mode failed. Expected 6, got 1 TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got 0",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_9 | run_20260427_102437_171676_163c0c | ok | failed | failed | skipped | failed | syntax | t/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_9
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (load_en) begin
data_out <= data_in;
scan_out <= 1'b0;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (load_en) begin
data_out <= data_in;
scan_out <= 1'b0;
end
...
syntax details[stderr] t/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:53: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:60: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:61: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:63: error: data_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:64: error: scan_out is not a valid l-value in scan_reset_override_reg. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire. 20 error(s) during elaboration. functional details[stderr] valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:41: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:42: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:49: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:50: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:52: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:53: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:60: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:61: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:63: error: data_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:64: error: scan_out is not a valid l-value in tb_task_51.dut. /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire. 20 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "t/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:53: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:60: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:61: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:63: error: data_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:64: error: scan_out is not a valid l-value in scan_reset_override_reg.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : scan_out is declared here as wire.\n20 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:41: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:42: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:49: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:50: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:52: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : data_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:53: error: scan_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : scan_out is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:60: error: data_out is not a valid l-value in tb_task_51.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/pashencev__05_dft_testab…
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_20260427_144342_055801_c17762 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:14: error: 'data_out' has already been declared in this scope. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_9
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output [3:0] data_out,
output scan_out
);
// Registers
reg [3:0] data_out;
reg scan_out;
// Wires
wire rst_n_sync = ~rst_n;
wire load_en_sync = ~load_en;
wire test_mode_sync = ~test_mode;
// Reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else begin
// Functional reset behavior
if (test_mode == 0 && load_en == 1) begin
data_out <= data_in;
end
// Test-mode reset override
...
syntax details[stderr] /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:14: error: 'data_out' has already been declared in this scope. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : It was declared here as a net. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:15: error: 'scan_out' has already been declared in this scope. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : It was declared here as a net. functional details[stderr] /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:14: error: 'data_out' has already been declared in this scope. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : It was declared here as a net. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:15: error: 'scan_out' has already been declared in this scope. /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : It was declared here as a net. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:14: error: 'data_out' has already been declared in this scope.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:9: : It was declared here as a net.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:15: error: 'scan_out' has already been declared in this scope.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/generated.v:10: : It was declared here as a net.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:14: error: 'data_out' has already been declared in this scope.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:9: : It was declared here as a net.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:15: error: 'scan_out' has already been declared in this scope.\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:10: : 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
}
|
| sample_10 | run_20260427_102437_171676_163c0c | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_102437_171676_163c0c__sample_10
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
// Functional reset behavior
always @(posedge clk or negedge rst_n) begin
if (~rst_n & ~test_mode) begin
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (load_en & ~test_mode) begin
data_out <= data_in;
end
end
// Functional mode
always @(posedge clk or negedge rst_n) begin
if (~rst_n & ~test_mode) begin
data_out <= 4'b0;
end else if (load_en & ~test_mode) begin
data_out <= {data_out[2:0], scan_in};
end
end
// Test-mode reset override
...
functional details[stdout] ERROR: first scan shift failed before reset override check. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] OpenLane failed: 2 errors[][
{
"stage": "openlane",
"code": "openlane.failed",
"message": "OpenLane failed: 2",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: first scan shift failed before reset override check.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_10 | run_20260427_144342_055801_c17762 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260427_144342_055801_c17762__sample_10
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input scan_in,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
data_out <= 'b0;
scan_out <= 'b0;
end else if (test_mode && ~scan_en) begin
// Hold the current register contents in test mode with scan_en = 0.
data_out <= data_in;
scan_out <= scan_in;
end else if (load_en) begin
// Capture data_in into data_out when load_en is asserted.
data_out <= data_in;
end
end
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
scan_out <= 'b0;
end else if (test_mode && scan_en) begin
// Perform one shift on each rising edge of clk in test mode.
scan_out <= data_out[3];
...
functional details[stdout] ERROR: test-mode reset override failed. Scan state was cleared by rst_n. ERROR: scan shift did not continue while reset was asserted in test mode. TEST_FAILED /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:124: $finish called at 59000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: test-mode reset override failed. Scan state was cleared by rst_n.",
"retryable": false,
"details": {
"marker": "TEST_FAILED"
}
},
{
"stage": "openlane",
"code": "openlane.invalidated_by_functional_failure",
"message": "OpenLane result invalidated because functional validation failed after output-marker correction",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|