optimize warp_sched

This commit is contained in:
Blaise Tine
2020-08-24 05:36:00 -07:00
parent 9e2d430239
commit df25bae456
6 changed files with 19 additions and 50 deletions

View File

@@ -21,7 +21,7 @@ endtask
task print_ex_op;
input [`EX_BITS-1:0] ex_type;
input [`OP_BITS-1:0] op_type;
input [`OP_BITS-1:0] op_mod;
input [`MOD_BITS-1:0] op_mod;
begin
case (ex_type)
`EX_ALU: begin
@@ -141,19 +141,4 @@ task print_ex_op;
end
endtask
task print_frm;
input [`FRM_BITS-1:0] frm;
begin
case (frm)
`FRM_RNE: $write("RNE");
`FRM_RTZ: $write("RTZ");
`FRM_RDN: $write("RDN");
`FRM_RUP: $write("RUP");
`FRM_RMM: $write("RMM");
`FRM_DYN: $write("DYN");
default: $write("?");
endcase
end
endtask
`endif