Skip to content
Snippets Groups Projects
Commit cf40c5d7 authored by Mikael Henriksson's avatar Mikael Henriksson :runner:
Browse files

codegen: increase length of matrix transposition unit test

parent d838d581
No related branches found
No related tags found
1 merge request!432NorCAS2023 changes
...@@ -40,7 +40,7 @@ begin ...@@ -40,7 +40,7 @@ begin
-- Input generation -- Input generation
input_gen_proc: process begin input_gen_proc: process begin
wait until en = '1'; wait until en = '1';
for i in 0 to ROWS*COLS-1 loop for i in 0 to 4*ROWS*COLS-1 loop
wait until clk = '0'; wait until clk = '0';
input <= std_logic_vector(to_unsigned(i, input'length)); input <= std_logic_vector(to_unsigned(i, input'length));
end loop; end loop;
...@@ -51,10 +51,17 @@ begin ...@@ -51,10 +51,17 @@ begin
output_test_proc: process begin output_test_proc: process begin
wait until en = '1'; wait until en = '1';
wait until output = std_logic_vector(to_unsigned(0, output'length)); wait until output = std_logic_vector(to_unsigned(0, output'length));
for col in 0 to COLS-1 loop for i in 0 to 3 loop
for row in 0 to ROWS-1 loop for col in 0 to COLS-1 loop
wait until clk = '0'; for row in 0 to ROWS-1 loop
--check(output = std_logic_vector(to_unsigned(row*COLS + col, output'length))); wait until clk = '0';
check(
output =
std_logic_vector(
to_unsigned(i*ROWS*COLS + row*COLS + col, output'length)
)
);
end loop;
end loop; end loop;
end loop; end loop;
done <= true; done <= true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment