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

codellama:13b | RAG on

13_rtllm_arithmetic / task_02 | verified_adder_16bit

benchmarkrtllm
task_idrtllm/13_rtllm_arithmetic/task_02
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260426_075435_225972_f32200

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

Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из 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_075435_225972_f32200 failed failed failed skipped failed extract No module/endmodule block found in model response
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_1
synthesis details
[error]
None
errors[]
[
  {
    "stage": "extract",
    "code": "extract.no_verilog_found",
    "message": "No module/endmodule block found in model response",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": false,
  "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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_2/generated.v:9: error: Gates do not have port names.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_2
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder u1(.a(a), .b(b), .sum(x), .cout(y));
    half_adder u2(.a(x), .b(cin), .sum(z), .cout(cout));
    or u3(.a(y), .b(z), .out(sum));
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_2/generated.v:9: error: Gates do not have port names.
functional details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_2/functional/generated.v:9: error: Gates do not have port names.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_2/generated.v:9: error: Gates do not have port names.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_2/functional/generated.v:9: error: Gates do not have port names.\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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_3
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder u1(a, b, x, y);
    half_adder u2(x, y, z, sum);
    or u3(cin, z, cout);
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/generated.v:8: error: Unknown module type: half_adder
3 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/functional/generated.v:8: error: Unknown module type: half_adder
5 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/generated.v:8: error: Unknown module type: half_adder\n3 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_3/functional/generated.v:8: error: Unknown module type: half_adder\n5 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n***\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_075435_225972_f32200 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_4
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input [15:0] a;
    input [15:0] b;
    input cin;
    output [15:0] sum;
    output cout;
    
    wire [15:0] wxor1 = a ^ b;
    wire [15:0] wand1 = a & b;
    wire [15:0] wand2 = ~(a | b);
    
    assign sum = wxor1 ^ cin;
    assign cout = (wxor1 & cin) | (wand1 & ~cin);
endmodule
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
3 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n***\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_5 run_20260426_075435_225972_f32200 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_5
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input [15:0] a;
    input [15:0] b;
    input cin;
    output [15:0] sum;
    output cout;

    wire [15:0] wxor1 = a ^ b;
    wire [15:0] wand1 = a & b;
    wire [15:0] wand2 = a | b;

    assign {cout, sum} = wxor1 ^ cin;
endmodule
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
3 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n***\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_20260426_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_6
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder u1(a, b, x, y);
    half_adder u2(x, y, z, sum);
    or u3(cin, z, cout);
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/generated.v:8: error: Unknown module type: half_adder
3 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/functional/generated.v:8: error: Unknown module type: half_adder
5 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/generated.v:8: error: Unknown module type: half_adder\n3 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_6/functional/generated.v:8: error: Unknown module type: half_adder\n5 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n***\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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_7
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder h1(a, b, x, y);
    half_adder h2(x, y, z, cout);
    or_gate o(cin, z, sum);
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:8: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:9: error: Unknown module type: or_gate
4 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
        or_gate referenced 1 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:8: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:9: error: Unknown module type: or_gate
6 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
        or_gate referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:8: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/generated.v:9: error: Unknown module type: or_gate\n4 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n        or_gate referenced 1 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:8: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_7/functional/generated.v:9: error: Unknown module type: or_gate\n6 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n        or_gate referenced 1 times.\n***\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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_8
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder u1(a, b, x, y);
    half_adder u2(x, y, z, cout);
    or u3(cin, z, sum);
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/generated.v:8: error: Unknown module type: half_adder
3 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/functional/generated.v:8: error: Unknown module type: half_adder
5 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/generated.v:8: error: Unknown module type: half_adder\n3 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_8/functional/generated.v:8: error: Unknown module type: half_adder\n5 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n***\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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_9
generated.v preview
module full_adder(a, b, cin, sum, cout);
    input a, b, cin;
    output sum, cout;
    
    wire x, y, z;
    
    half_adder u1(a, b, x, y);
    half_adder u2(x, y, z, sum);
    or u3(cin, z, cout);
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/generated.v:8: error: Unknown module type: half_adder
3 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/functional/generated.v:8: error: Unknown module type: half_adder
5 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/generated.v:8: error: Unknown module type: half_adder\n3 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_9/functional/generated.v:8: error: Unknown module type: half_adder\n5 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n***\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_075435_225972_f32200 ok failed failed skipped failed syntax /data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/generated.v:7: error: Unknown module type: half_adder
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_on\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_02\samples\run_20260426_075435_225972_f32200__sample_10
generated.v preview
module full_adder(a, b, cin, sum, cout);
  input a, b, cin;
  output sum, cout;

  wire x, y, z;

  half_adder u1(a, b, x, y);
  half_adder u2(x, y, z, cout);

  assign sum = z + cin;
endmodule
syntax details
[stderr]
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/generated.v:8: error: Unknown module type: half_adder
3 error(s) during elaboration.
*** These modules were missing:
        half_adder referenced 2 times.
***
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/functional/generated.v:7: error: Unknown module type: half_adder
/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/functional/generated.v:8: error: Unknown module type: half_adder
5 error(s) during elaboration.
*** These modules were missing:
        adder_16bit referenced 1 times.
        half_adder referenced 2 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/generated.v:8: error: Unknown module type: half_adder\n3 error(s) during elaboration.\n*** These modules were missing:\n        half_adder referenced 2 times.\n***\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_02/tb.v:39: error: Unknown module type: adder_16bit\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/functional/generated.v:7: error: Unknown module type: half_adder\n/data/eval/out/run_20260426_075435_225972_f32200/tmp/codellama/rtllm__13_rtllm_arithmetic__task_02/sample_10/functional/generated.v:8: error: Unknown module type: half_adder\n5 error(s) during elaboration.\n*** These modules were missing:\n        adder_16bit referenced 1 times.\n        half_adder referenced 2 times.\n***\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
}