perf: fix too strict restriction on FLU write-back (#1230)

This commit is contained in:
cathales 2023-05-12 00:02:30 +02:00 committed by GitHub
parent 8e39a17056
commit 3bab6ed815
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -388,7 +388,7 @@ module issue_read_operands import ariane_pkg::*; #(
end
// after a multiplication was issued we can only issue another multiplication
// otherwise we will get contentions on the fixed latency bus
if (mult_valid_q && issue_instr_i.fu != MULT) begin
if (mult_valid_q && issue_instr_i.fu inside {ALU, CTRL_FLOW, CSR}) begin
issue_ack_o = 1'b0;
end
end