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

codellama:13b | RAG off

13_rtllm_arithmetic / task_11 | verified_multi_16bit

benchmarkrtllm
task_idrtllm/13_rtllm_arithmetic/task_11
samples_total20
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260427_102437_171676_163c0c, run_20260427_144342_055801_c17762

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

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

Samples

sample run extract_ok syntax_ok functional_ok openlane_ok final_success failure_stage failure_reason details
sample_1 run_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_1
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register (i)
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        i <= 5'b0;
        areg <= ain;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_1 run_20260427_144342_055801_c17762 ok failed failed skipped failed syntax /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:57: syntax error
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_1
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        // Start condition
...
syntax details
[stderr]
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:57: syntax error
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:57: error: Invalid module instantiation
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:58: error: Invalid module instantiation
functional details
[stderr]
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:57: syntax error
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:57: error: Invalid module instantiation
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:58: error: Invalid module instantiation
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:57: syntax error\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:57: error: Invalid module instantiation\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/generated.v:58: error: Invalid module instantiation\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:57: syntax error\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:57: error: Invalid module instantiation\n/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_1/functional/generated.v:58: error: Invalid module instantiation\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_20260427_102437_171676_163c0c failed failed failed skipped failed extract Model response is empty
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_2
synthesis details
[error]
None
errors[]
[
  {
    "stage": "model_request",
    "code": "model_request.failed",
    "message": "HTTPConnectionPool(host='ollama', port=11434): Read timed out. (read timeout=120)",
    "retryable": true,
    "details": {}
  },
  {
    "stage": "extract",
    "code": "extract.no_verilog_found",
    "message": "Model response is empty",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": false,
  "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_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_2
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        // Start condition
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_3 run_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_3
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        i <= 5'b0;
        areg <= ain;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_3 run_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_3
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_4 run_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_4
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_4 run_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_4
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        // Shift count register update
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_5
generated.v preview
module verified_multi_16bit(
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        // Normal operation
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_5
generated.v preview
module verified_multi_16bit(
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_6
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        // Shift count register update
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_6
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_7 run_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_7
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        // Start condition
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_7 run_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_7
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= 5'b0;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_8 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: A reference to a wire or reg (`i') is not allowed in a constant expression.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_8
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        i <= 5'b0;
        areg <= ain;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: A reference to a wire or reg (`i') is not allowed in a constant expression.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: Part select expressions must be constant.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43:      : This msb expression violates the rule: (i)-('sd2)
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: A reference to a wire or reg (`i') is not allowed in a constant expression.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: Part select expressions must be constant.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43:      : This msb expression violates the rule: (i)-('sd2)
4 error(s) during elaboration.
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: A reference to a wire or reg (`i') is not allowed in a constant expression.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: Part select expressions must be constant.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43:      : This msb expression violates the rule: (i)-('sd2)\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: A reference to a wire or reg (`i') is not allowed in a constant expression.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43: error: Part select expressions must be constant.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_8/generated.v:43:      : This msb expression violates the rule: (i)-('sd2)\n4 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_16bit 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_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_8
generated.v preview
module verified_multi_16bit(
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_9 run_20260427_102437_171676_163c0c ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_9
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        i <= i + 5'b1;
        areg <= ain;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_9 run_20260427_144342_055801_c17762 ok ok failed skipped failed functional /workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_9
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else begin
        if (start) begin
            i <= i + 5'b1;
...
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit
3 error(s) during elaboration.
*** These modules were missing:
        multi_16bit referenced 1 times.
***
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:17: error: Unknown module type: multi_16bit\n3 error(s) during elaboration.\n*** These modules were missing:\n        multi_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_10 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:58: syntax error
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_102437_171676_163c0c__sample_10
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        // Reset condition
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        // Start condition
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:58: syntax error
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:58: error: Invalid module instantiation
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:59: error: Invalid module instantiation
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:58: syntax error
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:58: error: Invalid module instantiation
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:59: error: Invalid module instantiation
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:58: syntax error\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:58: error: Invalid module instantiation\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:59: error: Invalid module instantiation\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:58: syntax error\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:58: error: Invalid module instantiation\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/functional/generated.v:59: error: Invalid module instantiation\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_20260427_144342_055801_c17762 ok failed failed skipped failed syntax /data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:346: syntax error
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codellama-13b\rag_off\benchmarks\rtllm\tasks\rtllm__13_rtllm_arithmetic__task_11\samples\run_20260427_144342_055801_c17762__sample_10
generated.v preview
module verified_multi_16bit (
    input clk,
    input rst_n,
    input start,
    input [15:0] ain,
    input [15:0] bin,
    output reg [31:0] yout,
    output reg done
);

// Shift count register
reg [4:0] i;

// Multiplicand and multiplier registers
reg [15:0] areg, breg;

// Product register
reg [31:0] yout_r;

// Multiplication completion flag
reg done_r;

always @(posedge clk or negedge rst_n) begin
    if (~rst_n) begin
        i <= 5'b0;
        areg <= 16'b0;
        breg <= 16'b0;
        yout_r <= 32'b0;
        done_r <= 1'b0;
    end else if (start) begin
        i <= i + 5'b1;
        areg <= ain;
...
syntax details
[stderr]
/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:346: syntax error
I give up.
functional details
[stderr]
/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:75: syntax error
I give up.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_144342_055801_c17762/tmp/codellama/rtllm__13_rtllm_arithmetic__task_11/sample_10/generated.v:346: syntax error\nI give up.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/workspace/banchmarks/rtllm/13_rtllm_arithmetic/task_11/tb.v:75: syntax error\nI give up.\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
}