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

deepseek-coder-v2:16b | RAG off

11_side_channel_constant_time / task_111 | consttime_byte_search

benchmarkilyasov
task_idilyasov/11_side_channel_constant_time/task_111
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 (match index 0): busy=0 expected=1
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_1
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else begin
        if (!busy && start) begin
            busy <= 1;
            latched_haystack <= haystack;
            latched_needle <= needle;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_1/generated.v:38: warning: Numeric constant truncated to 3 bits.
functional details
[stdout]
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): done=1 expected=0
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): busy=0 expected=1
ERROR (match index 0): done=0 expected=1
ERROR (match index 0): found=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): done=1 expected=0
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): busy=0 expected=1
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): found=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): done=1 expected=0
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): busy=0 expected=1
ERROR (multiple matches choose first): busy=0 expected=1
...
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): busy=0 expected=1",
    "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__11_side_channel_constant_time__task_111/sample_2/generated.v:39: sorry: break statements not supported.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_2
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg request_accepted;
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        request_accepted <= 0;
    end else if (start && !busy && !request_accepted) begin
        latched_haystack <= haystack;
        latched_needle <= needle;
        busy <= 1;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        request_accepted <= 1;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_2/generated.v:39: sorry: break statements not supported.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_2/functional/generated.v:39: sorry: break statements not supported.
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__11_side_channel_constant_time__task_111/sample_2/generated.v:39: sorry: break statements not supported.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_2/functional/generated.v:39: sorry: break statements not supported.\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 (match index 0): done=0 expected=1
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_3
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else begin
        if (!busy && start) begin
            busy <= 1;
            latched_haystack <= haystack;
            latched_needle <= needle;
...
functional details
[stdout]
ERROR (match index 0): done=0 expected=1
ERROR (match index 0): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): found=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
ERROR (multiple matches choose first): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (no match): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (ignore busy start result): done=0 expected=1
ERROR (ignore busy start result): found=0 expected=1
ERROR (ignore busy start result): first_index=0 expected=4
ERROR (idle after ignored start): busy=1 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): done=0 expected=1
ERROR (final search): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): first_index=4 expected=0
TEST_FAILED
/workspace/banchmarks/pashencev/11_side_channel_constant_time/task_111/tb.v:207: $finish called at 676000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1",
    "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 ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_4
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'd0;
        latched_needle <= 8'd0;
        match_found <= 1'b0;
    end else begin
        if (!busy && start) begin
            busy <= 1;
            latched_haystack <= haystack;
            latched_needle <= needle;
...
functional details
[stdout]
ERROR (match index 0): done=0 expected=1
ERROR (match index 0): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): found=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
ERROR (multiple matches choose first): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (no match): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (ignore busy start result): done=0 expected=1
ERROR (ignore busy start result): found=0 expected=1
ERROR (ignore busy start result): first_index=0 expected=4
ERROR (idle after ignored start): busy=1 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): done=0 expected=1
ERROR (final search): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): first_index=4 expected=0
TEST_FAILED
/workspace/banchmarks/pashencev/11_side_channel_constant_time/task_111/tb.v:207: $finish called at 676000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1",
    "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_5 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_5
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else if (!busy && start) begin
        busy <= 1;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
...
functional details
[stdout]
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
...
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0",
    "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 (match index 0): done=0 expected=1
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_6
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        index <= 3'd0;
        match_found <= 1'b0;
    end else begin
        if (!busy && start) begin
            busy <= 1;
            latched_haystack <= haystack;
            latched_needle <= needle;
...
functional details
[stdout]
ERROR (match index 0): done=0 expected=1
ERROR (match index 0): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): found=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
ERROR (multiple matches choose first): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (no match): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (ignore busy start result): done=0 expected=1
ERROR (ignore busy start result): found=0 expected=1
ERROR (ignore busy start result): first_index=0 expected=4
ERROR (idle after ignored start): busy=1 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): done=0 expected=1
ERROR (final search): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): first_index=4 expected=0
TEST_FAILED
/workspace/banchmarks/pashencev/11_side_channel_constant_time/task_111/tb.v:207: $finish called at 676000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1",
    "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_7 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_7
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else if (!busy && start) begin
        busy <= 1;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
...
functional details
[stdout]
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
...
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0",
    "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_8 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_8
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else begin
        if (!busy && start) begin
            busy <= 1;
            latched_haystack <= haystack;
            latched_needle <= needle;
...
functional details
[stdout]
ERROR (match index 0): done=0 expected=1
ERROR (match index 0): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): found=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
ERROR (multiple matches choose first): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (no match): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (ignore busy start result): done=0 expected=1
ERROR (ignore busy start result): found=0 expected=1
ERROR (ignore busy start result): first_index=0 expected=4
ERROR (idle after ignored start): busy=1 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): first_index=4 expected=0
ERROR (final search): done=0 expected=1
ERROR (final search): found=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): first_index=4 expected=0
TEST_FAILED
/workspace/banchmarks/pashencev/11_side_channel_constant_time/task_111/tb.v:207: $finish called at 676000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): done=0 expected=1",
    "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_9 run_20260427_102437_171676_163c0c ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_9
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg [2:0] index;
reg match_found;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        index <= 3'd0;
        latched_haystack <= 64'b0;
        latched_needle <= 8'b0;
        match_found <= 1'b0;
    end else if (!busy && start) begin
        busy <= 1;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
...
functional details
[stdout]
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): found=1 expected=0
ERROR (match index 0): done=0 expected=1
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): found=1 expected=0
ERROR (match index 4): done=0 expected=1
ERROR (match index 4): first_index=0 expected=4
ERROR (return to idle): busy=1 expected=0
ERROR (return to idle): found=1 expected=0
ERROR (accept request): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): found=1 expected=0
ERROR (multiple matches choose first): done=0 expected=1
...
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR (match index 0): found=1 expected=0",
    "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_10 run_20260427_102437_171676_163c0c ok failed failed skipped failed syntax /data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_10/generated.v:39: sorry: break statements not supported.
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\deepseek-coder-v2-16b\rag_off\benchmarks\ilyasov\tasks\ilyasov__11_side_channel_constant_time__task_111\samples\run_20260427_102437_171676_163c0c__sample_10
generated.v preview
module consttime_byte_search (
    input clk,
    input rst_n,
    input start,
    input [63:0] haystack,
    input [7:0] needle,
    output reg busy,
    output reg done,
    output reg found,
    output reg [2:0] first_index
);

reg [63:0] latched_haystack;
reg [7:0] latched_needle;
reg request_accepted;
integer i;

always @(posedge clk or negedge rst_n) begin
    if (!rst_n) begin
        busy <= 0;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        request_accepted <= 0;
    end else if (start && !busy && !request_accepted) begin
        latched_haystack <= haystack;
        latched_needle <= needle;
        busy <= 1;
        done <= 0;
        found <= 0;
        first_index <= 3'd0;
        request_accepted <= 1;
...
syntax details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_10/generated.v:39: sorry: break statements not supported.
functional details
[stderr]
/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_10/functional/generated.v:39: sorry: break statements not supported.
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__11_side_channel_constant_time__task_111/sample_10/generated.v:39: sorry: break statements not supported.\n",
    "retryable": false,
    "details": {}
  },
  {
    "stage": "functional",
    "code": "functional.testbench_failed",
    "message": "/data/eval/out/run_20260427_102437_171676_163c0c/tmp/deepseek_coder_v2/pashencev__11_side_channel_constant_time__task_111/sample_10/functional/generated.v:39: sorry: break statements not supported.\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
}