03_low_power_design / task_40 | power_aware_fsm
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.
| sample | run | extract_ok | syntax_ok | functional_ok | openlane_ok | final_success | failure_stage | failure_reason | details |
|---|---|---|---|---|---|---|---|---|---|
| sample_1 | run_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_1
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'b0;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_2
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_3 | run_20260426_175047_007550_9b8266 | ok | ok | ok | ok | ok | success | Full pipeline success |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_3
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else if (low_power_mode == 1'b1) begin
ignore_data <= 1'b1;
end else begin
...
functional details[stdout] TEST_PASSED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": true,
"functional_ok": true,
"openlane_ok": true,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": true,
"success": true
}
|
| sample_4 | run_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_4
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'b0;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else if (low_power_mode) begin
ignore_data <= 1'b1;
end else begin
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_5 | run_20260426_175047_007550_9b8266 | ok | ok | failed | skipped | failed | functional | error |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_5
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_input;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'b0;
cg_en <= 1'b1;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
cg_en <= 1'b0;
end else begin
cg_en <= 1'b1;
end
end
...
synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.testbench_error",
"message": "error",
"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_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_6
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_7 | run_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_7
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_8 | run_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_8
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_9
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'h00;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! ERROR: Datapath toggled during SLEEP! Power Intent Violation. LLM failed to isolate operands during low_power_mode. TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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_10 | run_20260426_175047_007550_9b8266 | ok | ok | failed | failed | failed | functional | Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 0 |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\qwen3-coder-30b\rag_off\benchmarks\ilyasov\tasks\ilyasov__03_low_power_design__task_40\samples\run_20260426_175047_007550_9b8266__sample_10
generated.v previewmodule power_aware_fsm (
input clk,
input rst_n,
input data_in,
input low_power_mode,
output reg [7:0] match_count,
output reg cg_en
);
// FSM states
localparam IDLE = 3'b000;
localparam S1 = 3'b001;
localparam S2 = 3'b010;
localparam SLEEP = 3'b100;
reg [2:0] current_state, next_state;
reg ignore_data;
// State transition and output logic
always @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
current_state <= IDLE;
match_count <= 8'b0;
cg_en <= 1'b1;
ignore_data <= 1'b0;
end else begin
current_state <= next_state;
if (current_state == SLEEP) begin
ignore_data <= 1'b1;
end else begin
ignore_data <= 1'b0;
end
...
functional details[stdout] ERROR: Failed to detect normal '101' sequence. Count is 0 ERROR: clock-gate enable (cg_en) did not drop during sleep mode! TEST_FAILED /workspace/banchmarks/pashencev/03_low_power_design/task_40/tb.v:90: $finish called at 136000 (1ps) synthesis details[error] None errors[][
{
"stage": "functional",
"code": "functional.output_failed_marker",
"message": "Functional output contains failure marker: TEST_FAILED. ERROR: Failed to detect normal '101' sequence. Count is 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
}
|