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

codegemma:7b | RAG on

13_rtllm_arithmetic / task_06 | verified_adder_64bit

benchmarkrtllm
task_idrtllm/13_rtllm_arithmetic/task_06
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260425_215014_451219_c08f66

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

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

Samples

sample run extract_ok syntax_ok functional_ok openlane_ok final_success failure_stage failure_reason details
sample_1 run_20260425_215014_451219_c08f66 ok failed failed skipped failed syntax /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_1/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_1
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3, s4, s5, s6, s7;
    reg [63:0] c0, c1, c2, c3, c4, c5, c6;

    always @(posedge clk) begin
        if (rst_n) begin
            s0 <= 0;
            s1 <= 0;
            s2 <= 0;
            s3 <= 0;
            s4 <= 0;
            s5 <= 0;
            s6 <= 0;
            s7 <= 0;
            c0 <= 0;
            c1 <= 0;
            c2 <= 0;
            c3 <= 0;
            c4 <= 0;
            c5 <= 0;
            c6 <= 0;
            o_en <= 0;
        end else begin
...
syntax details
[stderr]
/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_1/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'
/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_1/generated.v:56: error: Could not find variable ``c7'' in ``adder_pipe_64bit''
2 error(s) during elaboration.
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_1/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_1/generated.v:56: error: Could not find variable ``c7'' in ``adder_pipe_64bit''\n2 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_2 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_2
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3, s4, s5, s6, s7;
    reg [63:0] c0, c1, c2, c3, c4, c5, c6, c7;

    always @(posedge clk) begin
        if (rst_n) begin
            s0 <= 0;
            s1 <= 0;
            s2 <= 0;
            s3 <= 0;
            s4 <= 0;
            s5 <= 0;
            s6 <= 0;
            s7 <= 0;

            c0 <= 0;
            c1 <= 0;
            c2 <= 0;
            c3 <= 0;
            c4 <= 0;
            c5 <= 0;
            c6 <= 0;
            c7 <= 0;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_3 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_3
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3;
    reg [1:0] carry;

    always @(posedge clk) begin
        if (rst_n) begin
            result <= 0;
            o_en <= 0;
            carry <= 0;
        end else begin
            if (i_en) begin
                s0 <= adda ^ addb ^ carry;
                carry <= (adda & addb) | (addb & carry) | (adda & carry);
                s1 <= s0 ^ addb ^ carry;
                carry <= (s0 & addb) | (addb & carry) | (s0 & carry);
                s2 <= s1 ^ addb ^ carry;
                carry <= (s1 & addb) | (addb & carry) | (s1 & carry);
                s3 <= s2 ^ addb ^ carry;
                result <= {s3, s2, s1, s0};
                o_en <= 1;
            end
        end
    end
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_4 run_20260425_215014_451219_c08f66 ok failed failed skipped failed syntax /data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_4/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_4
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3, s4, s5, s6, s7;
    reg [63:0] c0, c1, c2, c3, c4, c5, c6;

    always @(posedge clk) begin
        if (rst_n) begin
            s0 <= 0;
            s1 <= 0;
            s2 <= 0;
            s3 <= 0;
            s4 <= 0;
            s5 <= 0;
            s6 <= 0;
            s7 <= 0;
            c0 <= 0;
            c1 <= 0;
            c2 <= 0;
            c3 <= 0;
            c4 <= 0;
            c5 <= 0;
            c6 <= 0;
            o_en <= 0;
        end else begin
...
syntax details
[stderr]
/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_4/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'
/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_4/generated.v:56: error: Could not find variable ``c7'' in ``adder_pipe_64bit''
2 error(s) during elaboration.
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_4/generated.v:55: error: Unable to bind wire/reg/memory `c7' in `adder_pipe_64bit'\n/data/eval/out/run_20260425_215014_451219_c08f66/tmp/codegemma/rtllm__13_rtllm_arithmetic__task_06/sample_4/generated.v:56: error: Could not find variable ``c7'' in ``adder_pipe_64bit''\n2 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_5 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_5
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3;
    reg [1:0] carry;

    always @(posedge clk) begin
        if (rst_n) begin
            result <= 0;
            o_en <= 0;
            carry <= 0;
        end else begin
            if (i_en) begin
                s0 <= adda ^ addb ^ carry;
                carry <= (adda & addb) | (addb & carry) | (adda & carry);
                s1 <= s0 ^ addb ^ carry;
                carry <= (s0 & addb) | (addb & carry) | (s0 & carry);
                s2 <= s1 ^ addb ^ carry;
                carry <= (s1 & addb) | (addb & carry) | (s1 & carry);
                s3 <= s2 ^ addb ^ carry;
                carry <= (s2 & addb) | (addb & carry) | (s2 & carry);
                result <= {carry, s3};
                o_en <= 1;
            end
        end
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_6 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_6
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3, s4, s5, s6, s7;
    reg [1:0] carry;

    always @(posedge clk) begin
        if (rst_n) begin
            result <= 0;
            o_en <= 0;
            carry <= 0;
        end else begin
            if (i_en) begin
                s0 <= adda[0] ^ addb[0] ^ carry;
                carry <= adda[0] & addb[0] | adda[0] & carry | addb[0] & carry;

                s1 <= adda[1] ^ addb[1] ^ carry;
                carry <= adda[1] & addb[1] | adda[1] & carry | addb[1] & carry;

                s2 <= adda[2] ^ addb[2] ^ carry;
                carry <= adda[2] & addb[2] | adda[2] & carry | addb[2] & carry;

                s3 <= adda[3] ^ addb[3] ^ carry;
                carry <= adda[3] & addb[3] | adda[3] & carry | addb[3] & carry;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_7 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_7
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3, s4, s5, s6, s7;
    reg [63:0] c0, c1, c2, c3, c4, c5, c6, c7;

    always @(posedge clk) begin
        if (rst_n) begin
            s0 <= 0;
            s1 <= 0;
            s2 <= 0;
            s3 <= 0;
            s4 <= 0;
            s5 <= 0;
            s6 <= 0;
            s7 <= 0;
            c0 <= 0;
            c1 <= 0;
            c2 <= 0;
            c3 <= 0;
            c4 <= 0;
            c5 <= 0;
            c6 <= 0;
            c7 <= 0;
            o_en <= 0;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_8 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_8
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3;
    reg [1:0] carry;

    always @(posedge clk) begin
        if (rst_n) begin
            result <= 0;
            o_en <= 0;
            carry <= 0;
        end else begin
            if (i_en) begin
                s0 <= adda ^ addb ^ carry;
                carry <= (adda & addb) | (addb & carry) | (adda & carry);
                s1 <= s0 ^ addb ^ carry;
                carry <= (s0 & addb) | (addb & carry) | (s0 & carry);
                s2 <= s1 ^ addb ^ carry;
                carry <= (s1 & addb) | (addb & carry) | (s1 & carry);
                s3 <= s2 ^ addb ^ carry;
                carry <= (s2 & addb) | (addb & carry) | (s2 & carry);
                result <= {carry, s3};
                o_en <= 1;
            end
        end
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_9 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_9
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    // Registers to enable pipeline stages
    reg [63:0] reg_a, reg_b;
    reg [63:0] reg_sum0, reg_sum1;

    // Initialize registers on reset
    initial begin
        reg_a = 0;
        reg_b = 0;
        reg_sum0 = 0;
        reg_sum1 = 0;
    end

    // Update registers on clock edge
    always @(posedge clk) begin
        if (rst_n) begin
            reg_a <= 0;
            reg_b <= 0;
            reg_sum0 <= 0;
            reg_sum1 <= 0;
            o_en <= 0;
        end else begin
            if (i_en) begin
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_10 run_20260425_215014_451219_c08f66 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_06\samples\run_20260425_215014_451219_c08f66__sample_10
generated.v preview
module adder_pipe_64bit(
    input clk,
    input rst_n,
    input i_en,
    input [63:0] adda,
    input [63:0] addb,
    output reg [64:0] result,
    output reg o_en
);

    reg [63:0] s0, s1, s2, s3;
    reg [1:0] carry;

    always @(posedge clk) begin
        if (rst_n) begin
            result <= 0;
            o_en <= 0;
            carry <= 0;
        end else begin
            if (i_en) begin
                s0 <= adda ^ addb ^ carry;
                carry <= (adda & addb) | (addb & carry) | (adda & carry);
                s1 <= s0 ^ addb ^ carry;
                carry <= (s0 & addb) | (addb & carry) | (s0 & carry);
                s2 <= s1 ^ addb ^ carry;
                carry <= (s1 & addb) | (addb & carry) | (s1 & carry);
                s3 <= s2 ^ addb ^ carry;
                carry <= (s2 & addb) | (addb & carry) | (s2 & carry);
                result <= {carry, s3};
                o_en <= 1;
            end
        end
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.
3 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:66: error: parameter `DATA_WIDTH` not found in `tb_adder64.u_pip_add64`.\n/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_06/tb.v:67: error: parameter `STG_WIDTH` not found in `tb_adder64.u_pip_add64`.\n3 error(s) during elaboration.\n",
    "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
}