Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fpnew_opgroup_block.sv
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module fpnew_opgroup_block #(

logic in_valid;

assign in_valid = in_valid_i & (dst_fmt_i == fmt); // enable selected format
assign in_valid = in_valid_i & (dst_fmt_i == fpnew_pkg::fp_format_e'(fmt)); // enable selected format

// Forward masks related to the right SIMD lane
localparam int unsigned INTERNAL_LANES = fpnew_pkg::num_lanes(Width, fpnew_pkg::fp_format_e'(fmt), EnableVectors);
Expand Down