Skip to content

Commit da1cab4

Browse files
committed
renaming lane dispatch and gather units for clarity
1 parent fd66711 commit da1cab4

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

hw/rtl/VX_gpu_pkg.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ package VX_gpu_pkg;
636636
logic eop;
637637
} operands_t;
638638

639-
// warning: this layout should not be modified without updating VX_dispatch_unit!!!
639+
// warning: this layout should not be modified without updating VX_lane_dispatch!!!
640640
typedef struct packed {
641641
logic [UUID_WIDTH-1:0] uuid;
642642
logic [ISSUE_WIS_W-1:0] wis;

hw/rtl/core/VX_alu_unit.sv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ module VX_alu_unit import VX_gpu_pkg::*; #(
4444
.data_t (alu_result_t)
4545
) per_block_result_if[BLOCK_SIZE]();
4646

47-
VX_dispatch_unit #(
47+
VX_lane_dispatch #(
4848
.BLOCK_SIZE (BLOCK_SIZE),
4949
.NUM_LANES (NUM_LANES),
5050
.OUT_BUF (PARTIAL_BW ? 3 : 0)
51-
) dispatch_unit (
51+
) lane_dispatch (
5252
.clk (clk),
5353
.reset (reset),
5454
.dispatch_if(dispatch_if),
@@ -113,11 +113,11 @@ module VX_alu_unit import VX_gpu_pkg::*; #(
113113
`endif
114114
end
115115

116-
VX_gather_unit #(
116+
VX_lane_gather #(
117117
.BLOCK_SIZE (BLOCK_SIZE),
118118
.NUM_LANES (NUM_LANES),
119119
.OUT_BUF (PARTIAL_BW ? 3 : 0)
120-
) gather_unit (
120+
) lane_gather (
121121
.clk (clk),
122122
.reset (reset),
123123
.result_if (per_block_result_if),
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
`include "VX_define.vh"
1515

16-
module VX_dispatch_unit import VX_gpu_pkg::*; #(
16+
module VX_lane_dispatch import VX_gpu_pkg::*; #(
1717
parameter BLOCK_SIZE = 1,
1818
parameter NUM_LANES = 1,
1919
parameter OUT_BUF = 0,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
`include "VX_define.vh"
1515

16-
module VX_gather_unit import VX_gpu_pkg::*; #(
16+
module VX_lane_gather import VX_gpu_pkg::*; #(
1717
parameter BLOCK_SIZE = 1,
1818
parameter NUM_LANES = 1,
1919
parameter OUT_BUF = 0

hw/rtl/core/VX_lsu_unit.sv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ module VX_lsu_unit import VX_gpu_pkg::*; #(
3737
.data_t (lsu_execute_t)
3838
) per_block_execute_if[BLOCK_SIZE]();
3939

40-
VX_dispatch_unit #(
40+
VX_lane_dispatch #(
4141
.BLOCK_SIZE (BLOCK_SIZE),
4242
.NUM_LANES (NUM_LANES),
4343
.OUT_BUF (3)
44-
) dispatch_unit (
44+
) lane_dispatch (
4545
.clk (clk),
4646
.reset (reset),
4747
.dispatch_if(dispatch_if),
@@ -65,11 +65,11 @@ module VX_lsu_unit import VX_gpu_pkg::*; #(
6565
);
6666
end
6767

68-
VX_gather_unit #(
68+
VX_lane_gather #(
6969
.BLOCK_SIZE (BLOCK_SIZE),
7070
.NUM_LANES (NUM_LANES),
7171
.OUT_BUF (3)
72-
) gather_unit (
72+
) lane_gather (
7373
.clk (clk),
7474
.reset (reset),
7575
.result_if (per_block_result_if),

hw/rtl/core/VX_sfu_unit.sv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ module VX_sfu_unit import VX_gpu_pkg::*; #(
5757
.data_t (sfu_result_t)
5858
) per_block_result_if[BLOCK_SIZE]();
5959

60-
VX_dispatch_unit #(
60+
VX_lane_dispatch #(
6161
.BLOCK_SIZE (BLOCK_SIZE),
6262
.NUM_LANES (NUM_LANES),
6363
.OUT_BUF (3)
64-
) dispatch_unit (
64+
) lane_dispatch (
6565
.clk (clk),
6666
.reset (reset),
6767
.dispatch_if(dispatch_if),
@@ -136,11 +136,11 @@ module VX_sfu_unit import VX_gpu_pkg::*; #(
136136
.result_if (pe_result_if[PE_IDX_CSRS])
137137
);
138138

139-
VX_gather_unit #(
139+
VX_lane_gather #(
140140
.BLOCK_SIZE (BLOCK_SIZE),
141141
.NUM_LANES (NUM_LANES),
142142
.OUT_BUF (3)
143-
) gather_unit (
143+
) lane_gather (
144144
.clk (clk),
145145
.reset (reset),
146146
.result_if (per_block_result_if),

hw/rtl/fpu/VX_fpu_unit.sv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ module VX_fpu_unit import VX_gpu_pkg::*, VX_fpu_pkg::*; #(
3737
.data_t (fpu_execute_t)
3838
) per_block_execute_if[BLOCK_SIZE]();
3939

40-
VX_dispatch_unit #(
40+
VX_lane_dispatch #(
4141
.BLOCK_SIZE (BLOCK_SIZE),
4242
.NUM_LANES (NUM_LANES),
4343
.OUT_BUF (PARTIAL_BW ? 3 : 0)
44-
) dispatch_unit (
44+
) lane_dispatch (
4545
.clk (clk),
4646
.reset (reset),
4747
.dispatch_if(dispatch_if),
@@ -238,11 +238,11 @@ module VX_fpu_unit import VX_gpu_pkg::*, VX_fpu_pkg::*; #(
238238
assign per_block_result_if[block_idx].data.header.wb = 1'b1;
239239
end
240240

241-
VX_gather_unit #(
241+
VX_lane_gather #(
242242
.BLOCK_SIZE (BLOCK_SIZE),
243243
.NUM_LANES (NUM_LANES),
244244
.OUT_BUF (PARTIAL_BW ? 3 : 0)
245-
) gather_unit (
245+
) lane_gather (
246246
.clk (clk),
247247
.reset (reset),
248248
.result_if (per_block_result_if),

hw/rtl/tcu/VX_tcu_unit.sv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ module VX_tcu_unit import VX_gpu_pkg::*, VX_tcu_pkg::*; #(
3838
.data_t (tcu_execute_t)
3939
) per_block_execute_if[BLOCK_SIZE]();
4040

41-
VX_dispatch_unit #(
41+
VX_lane_dispatch #(
4242
.BLOCK_SIZE (BLOCK_SIZE),
4343
.NUM_LANES (NUM_LANES),
4444
.OUT_BUF (3)
45-
) dispatch_unit (
45+
) lane_dispatch (
4646
.clk (clk),
4747
.reset (reset),
4848
.dispatch_if(dispatch_if),
@@ -65,11 +65,11 @@ module VX_tcu_unit import VX_gpu_pkg::*, VX_tcu_pkg::*; #(
6565
);
6666
end
6767

68-
VX_gather_unit #(
68+
VX_lane_gather #(
6969
.BLOCK_SIZE (BLOCK_SIZE),
7070
.NUM_LANES (NUM_LANES),
7171
.OUT_BUF (3)
72-
) gather_unit (
72+
) lane_gather (
7373
.clk (clk),
7474
.reset (reset),
7575
.result_if (per_block_result_if),

0 commit comments

Comments
 (0)