mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
erge branch 'fpga_synthesis' of https://github.gatech.edu/casl/Vortex into fpga_synthesis
This commit is contained in:
commit
e3bead147a
1 changed files with 5 additions and 4 deletions
|
@ -42,10 +42,11 @@ module VX_scheduler (
|
|||
|
||||
wire rename_valid = rs1_rename_qual || rs2_rename_qual || rd_rename_qual;
|
||||
|
||||
assign schedule_delay = ((rename_valid) && (| bckE_req_if.valid))
|
||||
|| (memory_delay && is_mem)
|
||||
|| (gpr_stage_delay && (is_mem || is_exec))
|
||||
|| (exec_delay && is_exec);
|
||||
assign schedule_delay = (|bckE_req_if.valid) &&
|
||||
((rename_valid ) ||
|
||||
(memory_delay && is_mem) ||
|
||||
(gpr_stage_delay && (is_mem || is_exec)) ||
|
||||
(exec_delay && is_exec));
|
||||
|
||||
integer i, w;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue