Skip to content

Commit

Permalink
[hardware] Don't use vd with VIOTA and VID
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Nov 15, 2024
1 parent acb3ab0 commit aa5d57c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hardware/src/ara_dispatcher.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1299,9 +1299,13 @@ module ara_dispatcher import ara_pkg::*; import rvv_pkg::*; #(
// So, avoid reshuffling
ara_req_d.vtype.vsew = eew_q[ara_req_d.vd];
end
5'b10000: ara_req_d.op = ara_pkg::VIOTA;
5'b10000: begin
ara_req_d.op = ara_pkg::VIOTA;
ara_req_d.use_vd_op = 1'b0;
end
5'b10001: begin
ara_req_d.op = ara_pkg::VID;
ara_req_d.use_vd_op = 1'b0;
ara_req_d.use_vs2 = 1'b0;
end
endcase
Expand Down

0 comments on commit aa5d57c

Please sign in to comment.