We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c098a49 commit 42e979fCopy full SHA for 42e979f
src/1_58bit_mul.v
@@ -80,7 +80,7 @@ module systolic_array (
80
81
output wire [7:0] out
82
);
83
- localparam SLICES = 1;
+ localparam SLICES = 2;
84
localparam SLICE_BITS = $clog2(SLICES);
85
localparam SLICES_MINUS_1 = SLICES - 1;
86
localparam W = 1 * SLICES;
test/test.py
@@ -9,7 +9,7 @@
9
10
# PACK_5_WEIGHTS = False
11
PACK_5_WEIGHTS = True
12
-COMPUTE_SLICES = 1
+COMPUTE_SLICES = 2
13
14
WEIGHTS_PER_BYTE = 5 if PACK_5_WEIGHTS else 4
15
COMPUTE_BLOCK_WIDTH = 1 *COMPUTE_SLICES
0 commit comments