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_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
data_out <= 4'b0;
scan_out <= 4'b0;
end else if (!test_mode) begin
if (load_en) begin
data_out <= data_in;
end
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
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_2 | run_20260425_215014_451219_c08f66 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the register. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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 reg scan_out
);
reg [3:0] data_out_reg;
always @(posedge clk) begin
if (test_mode == 1'b0) begin
if (rst_n == 1'b0) begin
data_out_reg <= 4'b0;
scan_out <= 1'b0;
end else if (load_en == 1'b1) begin
data_out_reg <= data_in;
end
if (scan_en == 1'b1) begin
scan_out <= data_out_reg[3];
data_out_reg <= {data_out_reg[2:0], scan_in};
end
end else begin
if (rst_n == 1'b0) begin
data_out_reg <= data_out_reg;
end
end
end
...
functional details[stdout] ERROR: reset did not initialize the register. 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 reset no longer clears the register. 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_3 | run_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 0) begin
if (rst_n == 0) begin
data_out <= 0;
scan_out <= 0;
end else if (load_en) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else if (scan_en) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_4 | run_20260425_215014_451219_c08f66 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: functional load failed. Expected D, got x |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk or negedge rst_n) begin
if (rst_n == 0) begin
data_out <= 4'b0;
scan_out <= 4'b0;
end else begin
if (test_mode == 0) begin
if (load_en) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else begin
if (scan_en) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
end
end
...
functional details[stdout] 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 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 x",
"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_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 0) begin
if (rst_n == 0) begin
data_out <= 0;
scan_out <= 0;
end else if (load_en == 1) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else if (scan_en == 1) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_6 | run_20260425_215014_451219_c08f66 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the register. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 0) begin
if (rst_n == 0) begin
data_out <= 0;
scan_out <= 0;
end else if (load_en) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else if (scan_en) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_7 | run_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 1'b0) begin
if (rst_n == 1'b0) begin
data_out <= 4'b0;
scan_out <= 4'b0;
end else if (load_en == 1'b1) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else begin
if (scan_en == 1'b1) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_8 | run_20260425_215014_451219_c08f66 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the register. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 1'b0) begin
if (rst_n == 1'b0) begin
data_out <= 4'b0;
scan_out <= 4'b0;
end else if (load_en == 1'b1) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else begin
if (scan_en == 1'b1) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_9 | run_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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 reg [3:0] data_out,
output reg scan_out
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 0) begin
if (rst_n == 0) begin
data_out <= 0;
scan_out <= 0;
end else if (load_en) begin
data_reg <= data_in;
data_out <= data_reg;
end
end else if (scan_en) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end
endmodule
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 d ERROR: functional reset no longer clears the register. 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_10 | run_20260425_215014_451219_c08f66 | 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\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_51\samples\run_20260425_215014_451219_c08f66__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
);
reg [3:0] data_reg;
always @(posedge clk) begin
if (test_mode == 1'b0) begin
if (rst_n == 1'b0) begin
data_out <= 4'b0;
scan_out <= 4'b0;
end else if (load_en == 1'b1) begin
data_out <= data_in;
end
if (scan_en == 1'b1) begin
scan_out <= data_out[3];
data_out <= {data_out[2:0], scan_in};
end
end else begin
if (rst_n == 1'b0) begin
data_out <= data_reg;
end else if (load_en == 1'b1) begin
data_reg <= data_in;
end
...
functional details[stdout] ERROR: reset did not initialize the register. 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 reset no longer clears the register. 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
}
|