Skip to content

Commit 96412df

Browse files
author
Maurus Item
committed
Fixed vulnerability in engine.
1 parent c0ebdb2 commit 96412df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtl/redmule_engine.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ generate
130130
// In case input matrix is bigger than the array, we feedback the partial results to continue the computation
131131
always_comb begin : partial_product_feedback
132132
feedback[index] = y_bias_i[index];
133-
if (accumulate_i)
133+
if (accumulate_i[replica_index])
134134
feedback[index] = result[index];
135135
else
136136
feedback[index] = y_bias_i[index];

0 commit comments

Comments
 (0)