mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-19 11:34:59 -04:00
bug fixes
Some checks failed
CI / setup (push) Has been cancelled
CI / build (32) (push) Has been cancelled
CI / build (64) (push) Has been cancelled
CI / tests (cache, 32) (push) Has been cancelled
CI / tests (cache, 64) (push) Has been cancelled
CI / tests (config1, 32) (push) Has been cancelled
CI / tests (config1, 64) (push) Has been cancelled
CI / tests (config2, 32) (push) Has been cancelled
CI / tests (config2, 64) (push) Has been cancelled
CI / tests (debug, 32) (push) Has been cancelled
CI / tests (debug, 64) (push) Has been cancelled
CI / tests (opencl, 32) (push) Has been cancelled
CI / tests (opencl, 64) (push) Has been cancelled
CI / tests (regression, 32) (push) Has been cancelled
CI / tests (regression, 64) (push) Has been cancelled
CI / tests (scope, 32) (push) Has been cancelled
CI / tests (scope, 64) (push) Has been cancelled
CI / tests (stress, 32) (push) Has been cancelled
CI / tests (stress, 64) (push) Has been cancelled
CI / tests (synthesis, 32) (push) Has been cancelled
CI / tests (synthesis, 64) (push) Has been cancelled
CI / tests (vector, 32) (push) Has been cancelled
CI / tests (vector, 64) (push) Has been cancelled
CI / tests (vm, 32) (push) Has been cancelled
CI / tests (vm, 64) (push) Has been cancelled
CI / complete (push) Has been cancelled
Some checks failed
CI / setup (push) Has been cancelled
CI / build (32) (push) Has been cancelled
CI / build (64) (push) Has been cancelled
CI / tests (cache, 32) (push) Has been cancelled
CI / tests (cache, 64) (push) Has been cancelled
CI / tests (config1, 32) (push) Has been cancelled
CI / tests (config1, 64) (push) Has been cancelled
CI / tests (config2, 32) (push) Has been cancelled
CI / tests (config2, 64) (push) Has been cancelled
CI / tests (debug, 32) (push) Has been cancelled
CI / tests (debug, 64) (push) Has been cancelled
CI / tests (opencl, 32) (push) Has been cancelled
CI / tests (opencl, 64) (push) Has been cancelled
CI / tests (regression, 32) (push) Has been cancelled
CI / tests (regression, 64) (push) Has been cancelled
CI / tests (scope, 32) (push) Has been cancelled
CI / tests (scope, 64) (push) Has been cancelled
CI / tests (stress, 32) (push) Has been cancelled
CI / tests (stress, 64) (push) Has been cancelled
CI / tests (synthesis, 32) (push) Has been cancelled
CI / tests (synthesis, 64) (push) Has been cancelled
CI / tests (vector, 32) (push) Has been cancelled
CI / tests (vector, 64) (push) Has been cancelled
CI / tests (vm, 32) (push) Has been cancelled
CI / tests (vm, 64) (push) Has been cancelled
CI / complete (push) Has been cancelled
This commit is contained in:
parent
253a846036
commit
bbc44350b7
2 changed files with 9 additions and 11 deletions
|
@ -51,18 +51,16 @@ module VX_operands import VX_gpu_pkg::*; #(
|
|||
reg [`NUM_OPCS-1:0] select_opcs;
|
||||
always @(*) begin
|
||||
select_opcs = '1;
|
||||
// SFU cannot handle multiple inflight WCTL instructions, should use same collector
|
||||
if (`NUM_OPCS > 1 && SIMD_COUNT > 1
|
||||
&& scoreboard_if.data.ex_type == EX_SFU
|
||||
&& inst_sfu_is_wctl(scoreboard_if.data.op_type)) begin
|
||||
// LSU cannot handle out of order LD/ST instructions: use same collector
|
||||
if (`NUM_OPCS > 1 && scoreboard_if.data.ex_type == EX_LSU) begin
|
||||
// select collector 0
|
||||
for (int i = 0; i < `NUM_OPCS; ++i) begin
|
||||
if (i != 0) select_opcs[i] = 0;
|
||||
end
|
||||
end
|
||||
// LSU cannot handle out of order LD/ST instructions, should use same collector
|
||||
if (`NUM_OPCS > 1
|
||||
&& scoreboard_if.data.ex_type == EX_LSU) begin
|
||||
// SFU cannot handle multiple inflight WCTL instructions
|
||||
// CSR access should be ordered as well: use same collector
|
||||
if (`NUM_OPCS > 1 && scoreboard_if.data.ex_type == EX_SFU) begin
|
||||
// select collector 1
|
||||
for (int i = 0; i < `NUM_OPCS; ++i) begin
|
||||
if (i != 1) select_opcs[i] = 0;
|
||||
|
|
|
@ -52,9 +52,9 @@ module VX_schedule import VX_gpu_pkg::*; #(
|
|||
reg [`NUM_WARPS-1:0][`NUM_THREADS-1:0] thread_masks, thread_masks_n;
|
||||
reg [`NUM_WARPS-1:0][PC_BITS-1:0] warp_pcs, warp_pcs_n;
|
||||
|
||||
wire [NW_WIDTH-1:0] schedule_wid;
|
||||
wire [NW_WIDTH-1:0] schedule_wid;
|
||||
wire [`NUM_THREADS-1:0] schedule_tmask;
|
||||
wire [PC_BITS-1:0] schedule_pc;
|
||||
wire [PC_BITS-1:0] schedule_pc;
|
||||
wire schedule_valid;
|
||||
wire schedule_ready;
|
||||
|
||||
|
@ -62,9 +62,9 @@ module VX_schedule import VX_gpu_pkg::*; #(
|
|||
wire join_valid;
|
||||
wire join_is_dvg;
|
||||
wire join_is_else;
|
||||
wire [NW_WIDTH-1:0] join_wid;
|
||||
wire [NW_WIDTH-1:0] join_wid;
|
||||
wire [`NUM_THREADS-1:0] join_tmask;
|
||||
wire [PC_BITS-1:0] join_pc;
|
||||
wire [PC_BITS-1:0] join_pc;
|
||||
|
||||
reg [PERF_CTR_BITS-1:0] cycles;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue