dev/design #8

Merged
baulin.fa merged 42 commits from dev/design into master 2026-05-15 16:43:19 +03:00
17 changed files with 2042 additions and 143 deletions
Showing only changes of commit 66a15cd6e0 - Show all commits

View File

@ -9,7 +9,7 @@ module tb_accumulator_top;
localparam PACKET_SIZE = 1024;
localparam READ_BATCH_SIZE = (PACKET_SIZE*8)/ACCUM_WIDTH;
localparam MAX_WORDS = N_MAX;
localparam MAX_SEQ_NUM = 64;
localparam MAX_SEQ_NUM = 256;
logic clk_in;
logic eth_clk_in;
@ -325,6 +325,9 @@ module tb_accumulator_top;
run_test(4, 2, 12 * WINDOW_SIZE, 1'b1, 0, "random_seq7_smp12");
run_test(5, 4, 256 * WINDOW_SIZE, 1'b1, 0, "random_max_smpnum");
run_test(6, 2, 1500 * WINDOW_SIZE, 1'b1, 0, "random_max_smpnum2");
run_test(7, 20, 1 * WINDOW_SIZE, 1'b1, 0, "random_20seq");
run_test(8, 20, 3 * WINDOW_SIZE, 1'b1, 0, "random_20seqx3");
run_test(9, 200, 1 * WINDOW_SIZE, 1'b1, 0, "random_200seq");
$display("\n========================================");
$display("ALL TESTS COMPLETED");