Назад к моделям Назад к профилю модели

deepseek-coder-v2:16b | RAG on

01_ip_integration / task_11 | axi2apb_write_bridge

benchmarkilyasov
task_idilyasov/01_ip_integration/task_11
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260426_224416_826723_5f6af1

Что показывает эта страница

Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.

Samples

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__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_1
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_1/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_2
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_2/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_3
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_3/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_4
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_4/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_5
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_5/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_6
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_6/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_7
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready = 0,
    input [31:0] wdata,
    input wvalid,
    output reg wready = 0,
    output reg [1:0] bresp = 2'b0,
    output reg bvalid = 0,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr = 0,
    output reg psel = 0,
    output reg penable = 0,
    output reg pwrite = 0,
    output reg [31:0] pwdata = 0,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_7/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_8 run_20260426_224416_826723_5f6af1 ok failed failed skipped failed syntax /data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_8
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_8/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_9
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready,
    input [31:0] wdata,
    input wvalid,
    output reg wready,
    output reg [1:0] bresp,
    output reg bvalid,
    input bready,
    // APB4 Master Interface
    output reg [31:0] paddr,
    output reg psel,
    output reg penable,
    output reg pwrite,
    output reg [31:0] pwdata,
    input pready,
    input pslverr
);

    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;

    always @(posedge clk or negedge rst_n) begin
        if (!rst_n) begin
            state <= IDLE;
        end else begin
            state <= next_state;
        end
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_9/functional/generated.v:24: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_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__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name ACCESS has an inferred value that overflowed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_on\benchmarks\ilyasov\tasks\ilyasov__01_ip_integration__task_11\samples\run_20260426_224416_826723_5f6af1__sample_10
generated.v preview
module axi2apb_write_bridge (
    input clk,
    input rst_n,
    // AXI4-Lite Write Channel
    input [31:0] awaddr,
    input awvalid,
    output reg awready = 0,
    input [31:0] wdata,
    input wvalid,
    output reg wready = 0,
    output reg [1:0] bresp = 2'b00,
    output reg bvalid = 0,
    input bready
);

    // Internal registers to capture AXI signals
    reg [31:0] addr_reg;
    reg [31:0] data_reg;
    reg setup_done = 0;

    // APB4 Master Interface
    output reg [31:0] paddr = 0;
    output reg psel = 0;
    output reg penable = 0;
    output reg pwrite = 0;
    output reg [31:0] pwdata = 0;
    input pready;
    input pslverr;

    // FSM states
    typedef enum reg {IDLE, SETUP, ACCESS, RESP} state_t;
    state_t state, next_state;
...
syntax details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name ACCESS has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name ACCESS and IDLE have the same value: 1'd0
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name RESP has an inferred value that overflowed.
/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name RESP and SETUP have the same value: 1'd1
5 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__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/generated.v:31: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name ACCESS has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name ACCESS and IDLE have the same value: 1'd0\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name RESP has an inferred value that overflowed.\n/data/eval/out/run_20260426_224416_826723_5f6af1/tmp/deepseek_coder_v2/pashencev__01_ip_integration__task_11/sample_10/functional/generated.v:31: error: Enumeration name RESP and SETUP have the same value: 1'd1\n5 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}