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_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_1/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_1
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || (test_mode && !scan_en)) begin
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (!test_mode) begin
if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
end else begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
end
scan_out <= shift_reg[3];
end else if (test_mode && !scan_en) begin
shift_reg <= shift_reg;
data_out <= shift_reg;
scan_out <= scan_out;
end
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_1/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 1 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_1/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_1/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_2 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_2
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || test_mode) begin
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (test_mode && !scan_en) begin
// Hold the current register contents in test mode
shift_reg <= shift_reg;
data_out <= data_out;
scan_out <= scan_out;
end else if (!load_en) begin
// Retain the current value without loading new data
shift_reg <= shift_reg;
data_out <= data_out;
scan_out <= scan_out;
end else if (load_en) begin
// Capture input data into the register
shift_reg <= data_in;
data_out <= data_in;
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/generated.v:37: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 2 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:37: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/generated.v:37: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_2/functional/generated.v:37: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n3 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_3 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_3/generated.v:33: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_3
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_register;
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
if (!test_mode) begin
shift_register <= 4'b0;
data_out <= 4'b0;
end else begin
shift_register <= shift_register;
data_out <= data_out;
end
end else if (!test_mode) begin
if (load_en) begin
shift_register <= data_in;
data_out <= data_in;
end else begin
shift_register <= shift_register;
data_out <= shift_register;
end
end else begin
if (scan_en) begin
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_3/generated.v:33: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 1 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_3/functional/generated.v:33: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_3/generated.v:33: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_3/functional/generated.v:33: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n2 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_4 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/generated.v:35: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_4
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_register;
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
if (!test_mode) begin
shift_register <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else begin
shift_register <= shift_register;
data_out <= data_out;
scan_out <= scan_out;
end
end else if (!test_mode) begin
if (load_en) begin
shift_register <= data_in;
data_out <= data_in;
end else begin
shift_register <= shift_register;
data_out <= shift_register;
end
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/generated.v:35: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 2 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/functional/generated.v:35: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/functional/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/generated.v:35: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/functional/generated.v:35: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_4/functional/generated.v:36: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n3 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_5 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_5/generated.v:20: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_5
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || !test_mode) begin
shift_reg <= 4'b0;
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode && scan_en) begin
{shift_reg[3:1], shift_reg[0]} <= {data_out[2:0], scan_in};
data_out <= shift_reg;
scan_out <= shift_reg[3];
end else if (test_mode && !scan_en) begin
data_out <= data_out;
scan_out <= scan_out;
end else if (!test_mode && load_en) begin
data_out <= data_in;
end
end
endmodule
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_5/generated.v:20: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 1 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_5/functional/generated.v:20: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_5/generated.v:20: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_5/functional/generated.v:20: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n2 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_6 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_6/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_6
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || test_mode) begin
shift_reg <= 4'b0;
data_out <= 4'b0;
scan_out <= 1'b0;
end else if (test_mode && !scan_en) begin
shift_reg <= shift_reg;
data_out <= data_out;
scan_out <= scan_out;
end else if (!load_en) begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
scan_out <= shift_reg[3];
end else if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
scan_out <= shift_reg[3];
end
end
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_6/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 1 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_6/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_6/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_6/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_7 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_7
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || (test_mode && !scan_en)) begin
// Reset behavior for normal mode and test-mode with scan disabled
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (!test_mode) begin
// Functional mode
if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
end else begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
end
scan_out <= shift_reg[3];
end else if (test_mode && scan_en) begin
// Test-mode with scan enabled
shift_reg <= {shift_reg[2:0], scan_in};
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 2 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_7/functional/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n3 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_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_8
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || (test_mode && !scan_en)) begin
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (!test_mode) begin
if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
end else begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
end
end else if (test_mode && scan_en) begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
scan_out <= shift_reg[3];
end
end
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/generated.v:28: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 2 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:28: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/generated.v:28: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:24: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_8/functional/generated.v:28: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n3 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_9 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_9
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || (test_mode && !scan_en)) begin
// Reset behavior for normal mode and test-mode with scan disabled
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (!test_mode) begin
// Functional mode
if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
end else begin
shift_reg <= {shift_reg[2:0], scan_in};
data_out <= shift_reg;
end
scan_out <= shift_reg[3];
end else if (test_mode && scan_en) begin
// Test-mode with scan enabled
shift_reg <= {shift_reg[2:0], scan_in};
...
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 2 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:26: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_9/functional/generated.v:32: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n3 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_10 | run_20260426_224416_826723_5f6af1 | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_10/generated.v:27: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260426_224416_826723_5f6af1__sample_10
generated.v previewmodule scan_reset_override_reg (
input clk,
input rst_n,
input test_mode,
input scan_en,
input load_en,
input [3:0] data_in,
output reg [3:0] data_out,
output reg scan_out
);
reg [3:0] shift_reg;
always @(posedge clk or negedge rst_n) begin
if (!rst_n || test_mode) begin
shift_reg <= 4'b0000;
data_out <= 4'b0000;
scan_out <= 1'b0;
end else if (test_mode && !scan_en) begin
{shift_reg, scan_out} <= {shift_reg, scan_out};
end else if (!load_en) begin
shift_reg <= shift_reg;
end else if (load_en) begin
shift_reg <= data_in;
data_out <= data_in;
end else if (scan_en && !test_mode) begin
{shift_reg, scan_out} <= {data_out[2:0], scan_in};
end
end
endmodule
syntax details[stderr] /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_10/generated.v:27: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg' 1 error(s) during elaboration. functional details[stderr] /workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut. /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_10/functional/generated.v:27: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut' 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_10/generated.v:27: error: Unable to bind wire/reg/memory `scan_in' in `scan_reset_override_reg'\n1 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/workspace/banchmarks/pashencev/05_dft_testability/task_51/tb.v:18: error: port ``scan_in'' is not a port of dut.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_51/sample_10/functional/generated.v:27: error: Unable to bind wire/reg/memory `scan_in' in `tb_task_51.dut'\n2 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
}
|