Skip to content

Commit

Permalink
4 slices
Browse files Browse the repository at this point in the history
  • Loading branch information
rejunity committed Mar 12, 2024
1 parent 0196b17 commit f3463c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/1_58bit_mul.v
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module systolic_array (

output wire [7:0] out
);
localparam SLICES = 2;
localparam SLICES = 4;
localparam SLICE_BITS = $clog2(SLICES);
localparam W = 1 * SLICES;
localparam H = 4 * SLICES;
Expand Down
2 changes: 1 addition & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from cocotb.triggers import ClockCycles
from utils import *

COMPUTE_SLICES = 2
COMPUTE_SLICES = 4

def OUT(v):
return v >> 8
Expand Down

0 comments on commit f3463c4

Please sign in to comment.