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

deepseek-coder-v2:16b | RAG off

05_dft_testability / task_53 | mbist_ram_wrapper

benchmarkilyasov
task_idilyasov/05_dft_testability/task_53
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260427_102437_171676_163c0c

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

Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из 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 failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_1
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output reg [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (i = 0; i < 4; i = i + 1) begin
            mem[i] <= 8'h00;
        end
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en) begin
        if (func_we) begin
            mem[func_addr] <= func_wdata;
        end
        func_rdata <= mem[func_addr];
    end else if (mbist_start && !mbist_busy) begin
        mbist_busy <= 1;
...
functional details
[stdout]
ERROR: reset did not initialize the MBIST wrapper correctly.
ERROR: functional readback for address 1 failed. Got 00
ERROR: functional readback for address 2 failed. Got 00
ERROR: MBIST busy did not drop when test completed.
ERROR: MBIST done pulse missing at completion.
ERROR: MBIST pattern for address 0 is wrong. Got 00
ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00
ERROR: MBIST pattern for address 2 is wrong. Got 00
ERROR: MBIST pattern for address 3 is wrong. Got 00
ERROR: functional mode did not recover after MBIST.
TEST_FAILED
/workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_2 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_2
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [2:0] state;
reg [2:0] cycle;
reg [7:0] expected_pattern;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (int i = 0; i < 4; i++) mem[i] <= 8'h00;
        state <= 3'b000;
        cycle <= 3'b000;
        mbist_busy <= 1'b0;
        mbist_done <= 1'b0;
        mbist_fail <= 1'b0;
    end else if (!mbist_en) begin
        if (func_we) mem[func_addr] <= func_wdata;
        func_rdata <= mem[func_addr];
    end else begin
        case (state)
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_2/functional/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_3 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_3
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [2:0] state;
reg [2:0] cycle;
reg [1:0] addr;
reg we;
reg [7:0] wdata;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        mem[0] <= 8'h00;
        mem[1] <= 8'h00;
        mem[2] <= 8'h00;
        mem[3] <= 8'h00;
        state <= 3'b000;
        cycle <= 3'b000;
        mbist_busy <= 1'b0;
        mbist_done <= 1'b0;
        mbist_fail <= 1'b0;
...
functional details
[stdout]
ERROR: reset did not initialize the MBIST wrapper correctly.
ERROR: functional readback for address 1 failed. Got 22
ERROR: MBIST busy did not drop when test completed.
ERROR: MBIST done pulse missing at completion.
ERROR: MBIST pattern for address 0 is wrong. Got 12
ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 12
ERROR: MBIST pattern for address 2 is wrong. Got 12
ERROR: MBIST pattern for address 3 is wrong. Got 12
TEST_FAILED
/workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_4 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_4
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [2:0] state;
reg [2:0] cycle;
reg [7:0] expected_pattern;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (int i = 0; i < 4; i++) mem[i] <= 8'h00;
        state <= 3'b000;
        cycle <= 3'b000;
        mbist_busy <= 1'b0;
        mbist_done <= 1'b0;
        mbist_fail <= 1'b0;
    end else if (!mbist_en) begin
        if (func_we) mem[func_addr] <= func_wdata;
        func_rdata <= mem[func_addr];
    end else begin
        case (state)
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_4/functional/generated.v:7:      : func_rdata is declared here as wire.\n1 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_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_5
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output reg [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (i = 0; i < 4; i = i + 1) begin
            mem[i] <= 8'h00;
        end
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en) begin
        if (func_we) begin
            mem[func_addr] <= func_wdata;
        end
        func_rdata <= mem[func_addr];
    end else if (mbist_start && !mbist_busy) begin
        mbist_busy <= 1;
...
functional details
[stdout]
ERROR: reset did not initialize the MBIST wrapper correctly.
ERROR: functional readback for address 1 failed. Got 00
ERROR: functional readback for address 2 failed. Got 00
ERROR: MBIST busy did not drop when test completed.
ERROR: MBIST done pulse missing at completion.
ERROR: MBIST pattern for address 0 is wrong. Got 00
ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 00
ERROR: MBIST pattern for address 2 is wrong. Got 00
ERROR: MBIST pattern for address 3 is wrong. Got 00
ERROR: functional mode did not recover after MBIST.
TEST_FAILED
/workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: reset did not initialize the MBIST wrapper correctly.",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_6 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: MBIST busy did not drop when test completed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_6
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [1:0] addr;
reg we;
reg [7:0] wdata;
wire [7:0] rdata;

assign func_rdata = mem[func_addr];
assign rdata = mem[addr];

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (int i = 0; i < 4; i++) mem[i] <= 8'h00;
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en) begin
        if (func_we) begin
            mem[func_addr] <= func_wdata;
...
functional details
[stdout]
ERROR: MBIST busy did not drop when test completed.
ERROR: MBIST done pulse missing at completion.
TEST_FAILED
/workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps)
synthesis details
[error]
OpenLane failed: 2
errors[]
[
  {
    "stage": "openlane",
    "code": "openlane.failed",
    "message": "OpenLane failed: 2",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: MBIST busy did not drop when test completed.",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  }
]
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 failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/generated.v:29: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_7
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [2:0] state;
reg [2:0] cycle;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (int i = 0; i < 4; i++) mem[i] <= 8'h00;
        state <= 3'b000;
        cycle <= 3'b000;
        mbist_busy <= 1'b0;
        mbist_done <= 1'b0;
        mbist_fail <= 1'b0;
    end else if (!mbist_en) begin
        if (func_we) mem[func_addr] <= func_wdata;
        func_rdata <= mem[func_addr];
    end else begin
        case (state)
            3'b000: begin
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/generated.v:29: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:29: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/generated.v:29: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:29: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_7/functional/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_8 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/generated.v:47: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_8
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [7:0] expected_pattern;
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (i = 0; i < 4; i = i + 1) begin
            mem[i] <= 8'h00;
        end
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en && func_we) begin
        mem[func_addr] <= func_wdata;
    end else if (mbist_en && !mbist_busy && mbist_start) begin
        mbist_busy <= 1;
        for (i = 0; i < 4; i = i + 1) begin
            expected_pattern = 8'hA0 | i;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/generated.v:47: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/generated.v:7:      : func_rdata is declared here as wire.
1 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:47: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:7:      : func_rdata is declared here as wire.
warning: Found both default and explicit timescale based delays. Use
       : -Wtimescale to find the design element(s) with no explicit
       : timescale.
1 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/generated.v:47: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/generated.v:7:      : func_rdata is declared here as wire.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:47: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_8/functional/generated.v:7:      : func_rdata is declared here as wire.\nwarning: Found both default and explicit timescale based delays. Use\n       : -Wtimescale to find the design element(s) with no explicit\n       : timescale.\n1 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_9 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_9
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (i = 0; i < 4; i = i + 1) begin
            mem[i] <= 8'h00;
        end
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en) begin
        if (func_we) begin
            mem[func_addr] <= func_wdata;
        end
        func_rdata <= mem[func_addr];
    end else if (mbist_start && !mbist_busy) begin
        mbist_busy <= 1;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:7:      : func_rdata is declared here as wire.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:35: error: func_rdata is not a valid l-value in mbist_ram_wrapper.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:7:      : func_rdata is declared here as wire.
2 error(s) during elaboration.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:7:      : func_rdata is declared here as wire.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:35: error: func_rdata is not a valid l-value in tb_task_53.dut.
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:7:      : func_rdata is declared here as wire.
warning: Found both default and explicit timescale based delays. Use
       : -Wtimescale to find the design element(s) with no explicit
       : timescale.
2 error(s) during elaboration.
synthesis details
[error]
None
errors[]
[
  {
    "stage": "syntax",
    "code": "syntax.iverilog_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:30: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:7:      : func_rdata is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:35: error: func_rdata is not a valid l-value in mbist_ram_wrapper.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/generated.v:7:      : func_rdata is declared here as wire.\n2 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:30: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:7:      : func_rdata is declared here as wire.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:35: error: func_rdata is not a valid l-value in tb_task_53.dut.\n/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__05_dft_testability__task_53/sample_9/functional/generated.v:7:      : func_rdata is declared here as wire.\nwarning: Found both default and explicit timescale based delays. Use\n       : -Wtimescale to find the design element(s) with no explicit\n       : timescale.\n2 error(s) during elaboration.\n",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": false,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}
sample_10 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: MBIST busy did not drop when test completed.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_53\samples\run_20260427_102437_171676_163c0c__sample_10
generated.v preview
module mbist_ram_wrapper (
    input clk,
    input rst_n,
    input func_we,
    input [1:0] func_addr,
    input [7:0] func_wdata,
    output [7:0] func_rdata,
    input mbist_en,
    input mbist_start,
    output reg mbist_busy,
    output reg mbist_done,
    output reg mbist_fail
);

reg [7:0] mem[3:0];
reg [7:0] expected_pattern;
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        for (i = 0; i < 4; i = i + 1) begin
            mem[i] <= 8'h00;
        end
        mbist_busy <= 0;
        mbist_done <= 0;
        mbist_fail <= 0;
    end else if (!mbist_en && func_we) begin
        mem[func_addr] <= func_wdata;
    end else if (mbist_en && !mbist_busy && mbist_start) begin
        mbist_busy <= 1;
        for (i = 0; i < 4; i = i + 1) begin
            expected_pattern = 8'hA0 | i;
...
functional details
[stdout]
ERROR: MBIST busy did not drop when test completed.
ERROR: MBIST done pulse missing at completion.
ERROR: MBIST pattern for address 0 is wrong. Got 00
ERROR: functional write leaked into MBIST-owned RAM at address 1. Got 11
ERROR: MBIST pattern for address 2 is wrong. Got 22
ERROR: MBIST pattern for address 3 is wrong. Got 00
ERROR: functional mode did not recover after MBIST.
TEST_FAILED
/workspace/banchmarks/pashencev/05_dft_testability/task_53/tb.v:177: $finish called at 146000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: MBIST busy did not drop when test completed.",
    "retryable": false,
    "details": {
      "marker": "TEST_FAILED"
    }
  },
  {
    "stage": "openlane",
    "code": "openlane.invalidated_by_functional_failure",
    "message": "OpenLane result invalidated because functional validation failed after output-marker correction",
    "retryable": false,
    "details": {}
  }
]
outcome
{
  "llm_ok": true,
  "extract_ok": true,
  "syntax_ok": true,
  "functional_ok": false,
  "openlane_ok": false,
  "syntax_required": true,
  "functional_required": true,
  "openlane_required": true,
  "final_success": false,
  "success": false
}