Skip to content

Commit ce114b9

Browse files
Lore0599claude
andcommitted
hw: Fix reduction
- floo_nw_chimney: .N_OUP -> .NumOup in cc_stream_demux instance (deprecated stream_demux wrapper kept N_OUP for compat, but with cc_no_deprecated the new cc_stream_demux requires NumOup) - floo_reduction_unit: .DATA_WIDTH -> .DataWidth in cc_fifo instance Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d2b4278 commit ce114b9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

hw/floo_nw_chimney.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ module floo_nw_chimney
15601560

15611561
// Demux write VC to AXI AW and W channels
15621562
cc_stream_demux #(
1563-
.N_OUP(NumVirtualChannels)
1563+
.NumOup(NumVirtualChannels)
15641564
) i_wide_wr_flit_demux (
15651565
.inp_valid_i(floo_wide_in_wr_valid_q),
15661566
.inp_ready_o(floo_wide_out_wr_ready_q),

hw/floo_reduction_unit.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ module floo_reduction_unit
217217
// Fifo to store the output direction of the element during the FPU reduction
218218
cc_fifo #(
219219
.FallThrough (1'b1),
220-
.DATA_WIDTH (NumInputs),
220+
.DataWidth (NumInputs),
221221
.Depth (RedCfg.RdPipelineDepth+2)
222222
) i_fifo_route_dir (
223223
.clk_i (clk_i),

0 commit comments

Comments
 (0)