diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-27 05:02:31 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-27 05:55:04 -0600 |
| commit | a1135fc271f503bdc85508211c12201a38c646b8 (patch) | |
| tree | 241114055a5012b0053cf8ffe0c9b371c1db0ab0 /rtl/gfx/horizontal_fold.sv | |
| parent | ebd3ef9b8ebe6c19d0965c3d5ee741c725180f85 (diff) | |
rtl/gfx: fix linear combiner
Diffstat (limited to 'rtl/gfx/horizontal_fold.sv')
| -rw-r--r-- | rtl/gfx/horizontal_fold.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/gfx/horizontal_fold.sv b/rtl/gfx/horizontal_fold.sv index ee56098..f244b55 100644 --- a/rtl/gfx/horizontal_fold.sv +++ b/rtl/gfx/horizontal_fold.sv @@ -44,7 +44,7 @@ module horizontal_fold genvar i; generate - for (i = 1; i < `FLOATS_PER_VEC; ++i) begin: stages + for (i = 1; i < `FP_ADD_STAGES; ++i) begin: stages always_ff @(posedge clk) if (!stall) queued[i] <= queued[i - 1]; |
