mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
afc0b2056d
commit
74368ab65a
2 changed files with 7 additions and 1 deletions
|
@ -42,7 +42,7 @@ module VX_cluster import VX_gpu_pkg::*; #(
|
|||
|
||||
`ifdef SCOPE
|
||||
localparam scope_socket = 0;
|
||||
`SCOPE_IO_SWITCH (scope_socket + `NUM_SOCKETS);
|
||||
`SCOPE_IO_SWITCH (`NUM_SOCKETS);
|
||||
`endif
|
||||
|
||||
`ifdef PERF_ENABLE
|
||||
|
|
|
@ -30,6 +30,11 @@ module VX_lsu_unit import VX_gpu_pkg::*; #(
|
|||
);
|
||||
localparam BLOCK_SIZE = `NUM_LSU_BLOCKS;
|
||||
localparam NUM_LANES = `NUM_LSU_LANES;
|
||||
|
||||
`ifdef SCOPE
|
||||
localparam scope_lsu = 0;
|
||||
`SCOPE_IO_SWITCH (BLOCK_SIZE);
|
||||
`endif
|
||||
|
||||
VX_execute_if #(
|
||||
.NUM_LANES (NUM_LANES)
|
||||
|
@ -58,6 +63,7 @@ module VX_lsu_unit import VX_gpu_pkg::*; #(
|
|||
.CORE_ID (CORE_ID),
|
||||
.BLOCK_ID (block_idx)
|
||||
) lsu_slice(
|
||||
`SCOPE_IO_BIND (scope_lsu+block_idx)
|
||||
.clk (clk),
|
||||
.reset (block_reset),
|
||||
.execute_if (per_block_execute_if[block_idx]),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue