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

codegemma:7b | RAG on

02_clock_domain_crossing / task_24 | cdc_bus_sync

benchmarkilyasov
task_idilyasov/02_clock_domain_crossing/task_24
samples_total10
final_success_samples0
final_success_rate_samples0.0%
functional_pass_rate_samples0.0%
synth_pass_rate_samples0.0%
source_runsrun_20260425_215014_451219_c08f66

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

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

Samples

sample run extract_ok syntax_ok functional_ok openlane_ok final_success failure_stage failure_reason details
sample_1 run_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_1
generated.v preview
module cdc_bus_sync(
    input clk_a,
    input rst_n_a,
    input [15:0] data_a,
    input valid_a,

    input clk_b,
    input rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg data_b_reg;
    reg valid_b_reg;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_b_reg <= 0;
            valid_b_reg <= 0;
        end else begin
            if (valid_a) begin
                data_b_reg <= data_a;
                valid_b_reg <= 1;
            end else begin
                valid_b_reg <= 0;
            end
        end
    end

    assign data_b = data_b_reg;
    assign valid_b = valid_b_reg;
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_2
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1;
            end else begin
                valid_b_sync <= 0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_3 run_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_3
generated.v preview
module cdc_bus_sync(
    input clk_a,
    input rst_n_a,
    input [15:0] data_a,
    input valid_a,

    input clk_b,
    input rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg data_b_reg;
    reg valid_b_reg;

    always @(posedge clk_a) begin
        if (~rst_n_a) begin
            data_b_reg <= 0;
            valid_b_reg <= 0;
        end else begin
            if (valid_a) begin
                data_b_reg <= data_a;
                valid_b_reg <= 1;
            end else begin
                valid_b_reg <= 0;
            end
        end
    end

    assign data_b = data_b_reg;
    assign valid_b = valid_b_reg;
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_4
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_5
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_6
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_7
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_8
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_9
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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_20260425_215014_451219_c08f66 ok ok failed failed failed functional Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001
Open details
sample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_on\benchmarks\ilyasov\tasks\ilyasov__02_clock_domain_crossing__task_24\samples\run_20260425_215014_451219_c08f66__sample_10
generated.v preview
module cdc_bus_sync(
    input clk_a, rst_n_a, data_a, valid_a,
    input clk_b, rst_n_b,
    output reg [15:0] data_b,
    output reg valid_b
);

    reg [15:0] data_a_sync;
    reg valid_a_sync;
    reg valid_b_sync;

    always @(posedge clk_a) begin
        if (!rst_n_a) begin
            data_a_sync <= 0;
            valid_a_sync <= 0;
        end else begin
            data_a_sync <= data_a;
            valid_a_sync <= valid_a;
        end
    end

    always @(posedge clk_b) begin
        if (!rst_n_b) begin
            valid_b_sync <= 0;
        end else begin
            if (valid_a_sync) begin
                data_b <= data_a_sync;
                valid_b_sync <= 1'b1;
            end else begin
                valid_b_sync <= 1'b0;
            end
        end
...
functional details
[stdout]
ERROR: Data corrupted during transfer. Expected FFFF, got 0001
TEST_FAILED
/workspace/banchmarks/pashencev/02_clock_domain_crossing/task_24/tb.v:81: $finish called at 135000 (1ps)
synthesis details
[error]
None
errors[]
[
  {
    "stage": "functional",
    "code": "functional.output_failed_marker",
    "message": "Functional output contains failure marker: TEST_FAILED. ERROR: Data corrupted during transfer. Expected FFFF, got 0001",
    "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
}