06_reset_domain_crossing / task_61 | ordered_reset_ctrl
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из 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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_1
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
reg ready_b_synced;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b11;
end else if (a_init_done) begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
end else begin
sync_rst_a <= 2'b00;
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b11;
ready_b_synced <= 1'b0;
end else begin
sync_ready_b[0] <= (sync_rst_a[1] == 1'b0);
sync_ready_b[1] <= sync_ready_b[0];
ready_b_synced <= sync_ready_b[1];
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released before a_init_done was asserted. ERROR: domain B did not release after the second clk_b stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_2
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b00;
rst_a_n <= 1'b0;
end else begin
sync_rst_a[0] <= 1'b1;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b00;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_3
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
reg ready_cond_a;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b11;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b11;
end else begin
sync_ready_b[0] <= (sync_rst_a == 2'b00) && a_init_done;
sync_ready_b[1] <= sync_ready_b[0];
end
end
always @(posedge clk_a or negedge arst_n) begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_4
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b00;
rst_a_n <= 1'b0;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b00;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_5
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b00;
rst_a_n <= 1'b0;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b00;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_6
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b11;
rst_a_n <= 1'b1;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b11;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_7
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b11;
rst_a_n <= 1'b1;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b11;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_8
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b00;
rst_a_n <= 1'b0;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) begin
rst_a_n <= 1'b0;
end else begin
rst_a_n <= 1'b1;
end
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b00;
rst_b_n <= 1'b1;
end else begin
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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 | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_9
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b00;
rst_a_n <= 1'b0;
end else begin
sync_rst_a[0] <= 1'b0; // Reset synchronizer flop
sync_rst_a[1] <= sync_rst_a[0]; // Shift in new stage
rst_a_n <= ~sync_rst_a[1]; // Generate reset output
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b00;
rst_b_n <= 1'b1;
end else begin
sync_ready_b[0] <= (sync_rst_a[1] & a_init_done); // Ready condition synchronized to clk_b domain
sync_ready_b[1] <= sync_ready_b[0]; // Shift in new stage
rst_b_n <= ~sync_ready_b[1]; // Generate reset output
end
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A released reset after only one clk_a edge. ERROR: domain B released before a_init_done was asserted. ERROR: domain B deasserted reset asynchronously from an A-domain signal. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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_20260427_102437_171676_163c0c | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__06_reset_domain_crossing__task_61\samples\run_20260427_102437_171676_163c0c__sample_10
generated.v previewmodule ordered_reset_ctrl (
input clk_a,
input clk_b,
input arst_n,
input a_init_done,
output reg rst_a_n,
output reg rst_b_n
);
reg [1:0] sync_rst_a;
reg [1:0] sync_ready_b;
reg init_done_sync;
always @(posedge clk_a or negedge arst_n) begin
if (!arst_n) begin
sync_rst_a <= 2'b11;
rst_a_n <= 1'b1;
end else begin
sync_rst_a[0] <= 1'b0;
sync_rst_a[1] <= sync_rst_a[0];
if (sync_rst_a[1]) rst_a_n <= 1'b0;
else rst_a_n <= 1'b1;
end
end
always @(posedge clk_b or negedge arst_n) begin
if (!arst_n) begin
sync_ready_b <= 2'b11;
rst_b_n <= 1'b1;
init_done_sync <= 1'b0;
end else begin
sync_ready_b[0] <= (rst_a_n & a_init_done);
...
functional details[stdout] ERROR: resets were not asserted at power-up. ERROR: domain A did not release reset after two clk_a edges. ERROR: domain B released after only one clk_b synchronizer stage. ERROR: asynchronous reset assertion did not immediately reset both domains. TEST_FAILED /workspace/banchmarks/pashencev/06_reset_domain_crossing/task_61/tb.v:106: $finish called at 78000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: resets were not asserted at power-up.",
"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
}
|