Skip to content

Commit

Permalink
1 slice
Browse files Browse the repository at this point in the history
  • Loading branch information
rejunity committed Mar 18, 2024
1 parent d6550de commit 481142d
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 @@ -88,7 +88,7 @@ module systolic_array (

output wire [7:0] out
);
localparam SLICES = 3;
localparam SLICES = 1;
localparam SLICE_BITS = $clog2(SLICES);
localparam SLICES_MINUS_1 = SLICES - 1;
localparam W = 1 * SLICES;
Expand Down
2 changes: 1 addition & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# PACK_5_WEIGHTS = False
PACK_5_WEIGHTS = True
COMPUTE_SLICES = 3
COMPUTE_SLICES = 1

WEIGHTS_PER_BYTE = 5 if PACK_5_WEIGHTS else 4
COMPUTE_BLOCK_WIDTH = 1 *COMPUTE_SLICES
Expand Down

0 comments on commit 481142d

Please sign in to comment.